forked from aws-controllers-k8s/kinesis-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenums.go
More file actions
102 lines (80 loc) · 3.79 KB
/
Copy pathenums.go
File metadata and controls
102 lines (80 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
// Code generated by ack-generate. DO NOT EDIT.
package v1alpha1
type ConsumerStatus string
const (
ConsumerStatus_ACTIVE ConsumerStatus = "ACTIVE"
ConsumerStatus_CREATING ConsumerStatus = "CREATING"
ConsumerStatus_DELETING ConsumerStatus = "DELETING"
)
type EncryptionType string
const (
EncryptionType_KMS EncryptionType = "KMS"
EncryptionType_NONE EncryptionType = "NONE"
)
type MetricsName string
const (
MetricsName_ALL MetricsName = "ALL"
MetricsName_IncomingBytes MetricsName = "IncomingBytes"
MetricsName_IncomingRecords MetricsName = "IncomingRecords"
MetricsName_IteratorAgeMilliseconds MetricsName = "IteratorAgeMilliseconds"
MetricsName_OutgoingBytes MetricsName = "OutgoingBytes"
MetricsName_OutgoingRecords MetricsName = "OutgoingRecords"
MetricsName_ReadProvisionedThroughputExceeded MetricsName = "ReadProvisionedThroughputExceeded"
MetricsName_WriteProvisionedThroughputExceeded MetricsName = "WriteProvisionedThroughputExceeded"
)
type MinimumThroughputBillingCommitmentInputStatus string
const (
MinimumThroughputBillingCommitmentInputStatus_DISABLED MinimumThroughputBillingCommitmentInputStatus = "DISABLED"
MinimumThroughputBillingCommitmentInputStatus_ENABLED MinimumThroughputBillingCommitmentInputStatus = "ENABLED"
)
type MinimumThroughputBillingCommitmentOutputStatus string
const (
MinimumThroughputBillingCommitmentOutputStatus_DISABLED MinimumThroughputBillingCommitmentOutputStatus = "DISABLED"
MinimumThroughputBillingCommitmentOutputStatus_ENABLED MinimumThroughputBillingCommitmentOutputStatus = "ENABLED"
MinimumThroughputBillingCommitmentOutputStatus_ENABLED_UNTIL_EARLIEST_ALLOWED_END MinimumThroughputBillingCommitmentOutputStatus = "ENABLED_UNTIL_EARLIEST_ALLOWED_END"
)
type ScalingType string
const (
ScalingType_UNIFORM_SCALING ScalingType = "UNIFORM_SCALING"
)
type ShardFilterType string
const (
ShardFilterType_AFTER_SHARD_ID ShardFilterType = "AFTER_SHARD_ID"
ShardFilterType_AT_LATEST ShardFilterType = "AT_LATEST"
ShardFilterType_AT_TIMESTAMP ShardFilterType = "AT_TIMESTAMP"
ShardFilterType_AT_TRIM_HORIZON ShardFilterType = "AT_TRIM_HORIZON"
ShardFilterType_FROM_TIMESTAMP ShardFilterType = "FROM_TIMESTAMP"
ShardFilterType_FROM_TRIM_HORIZON ShardFilterType = "FROM_TRIM_HORIZON"
)
type ShardIteratorType string
const (
ShardIteratorType_AFTER_SEQUENCE_NUMBER ShardIteratorType = "AFTER_SEQUENCE_NUMBER"
ShardIteratorType_AT_SEQUENCE_NUMBER ShardIteratorType = "AT_SEQUENCE_NUMBER"
ShardIteratorType_AT_TIMESTAMP ShardIteratorType = "AT_TIMESTAMP"
ShardIteratorType_LATEST ShardIteratorType = "LATEST"
ShardIteratorType_TRIM_HORIZON ShardIteratorType = "TRIM_HORIZON"
)
type StreamMode string
const (
StreamMode_ON_DEMAND StreamMode = "ON_DEMAND"
StreamMode_PROVISIONED StreamMode = "PROVISIONED"
)
type StreamStatus_SDK string
const (
StreamStatus_SDK_ACTIVE StreamStatus_SDK = "ACTIVE"
StreamStatus_SDK_CREATING StreamStatus_SDK = "CREATING"
StreamStatus_SDK_DELETING StreamStatus_SDK = "DELETING"
StreamStatus_SDK_UPDATING StreamStatus_SDK = "UPDATING"
)