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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ChannelStatus string
// Enum values for ChannelStatus
const (
ChannelStatusCreating ChannelStatus = "CREATING"
ChannelStatusActive ChannelStatus = "ACTIVE"
ChannelStatusDeleting ChannelStatus = "DELETING"
)
// Values returns all known values for ChannelStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ChannelStatus) Values() []ChannelStatus {
return []ChannelStatus{
"CREATING",
"ACTIVE",
"DELETING",
}
}
type ComputeType string
// Enum values for ComputeType
const (
ComputeTypeAcu1 ComputeType = "ACU_1"
ComputeTypeAcu2 ComputeType = "ACU_2"
)
// Values returns all known values for ComputeType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ComputeType) Values() []ComputeType {
return []ComputeType{
"ACU_1",
"ACU_2",
}
}
type DatasetActionType string
// Enum values for DatasetActionType
const (
DatasetActionTypeQuery DatasetActionType = "QUERY"
DatasetActionTypeContainer DatasetActionType = "CONTAINER"
)
// Values returns all known values for DatasetActionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DatasetActionType) Values() []DatasetActionType {
return []DatasetActionType{
"QUERY",
"CONTAINER",
}
}
type DatasetContentState string
// Enum values for DatasetContentState
const (
DatasetContentStateCreating DatasetContentState = "CREATING"
DatasetContentStateSucceeded DatasetContentState = "SUCCEEDED"
DatasetContentStateFailed DatasetContentState = "FAILED"
)
// Values returns all known values for DatasetContentState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DatasetContentState) Values() []DatasetContentState {
return []DatasetContentState{
"CREATING",
"SUCCEEDED",
"FAILED",
}
}
type DatasetStatus string
// Enum values for DatasetStatus
const (
DatasetStatusCreating DatasetStatus = "CREATING"
DatasetStatusActive DatasetStatus = "ACTIVE"
DatasetStatusDeleting DatasetStatus = "DELETING"
)
// Values returns all known values for DatasetStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DatasetStatus) Values() []DatasetStatus {
return []DatasetStatus{
"CREATING",
"ACTIVE",
"DELETING",
}
}
type DatastoreStatus string
// Enum values for DatastoreStatus
const (
DatastoreStatusCreating DatastoreStatus = "CREATING"
DatastoreStatusActive DatastoreStatus = "ACTIVE"
DatastoreStatusDeleting DatastoreStatus = "DELETING"
)
// Values returns all known values for DatastoreStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DatastoreStatus) Values() []DatastoreStatus {
return []DatastoreStatus{
"CREATING",
"ACTIVE",
"DELETING",
}
}
type FileFormatType string
// Enum values for FileFormatType
const (
FileFormatTypeJson FileFormatType = "JSON"
FileFormatTypeParquet FileFormatType = "PARQUET"
)
// Values returns all known values for FileFormatType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FileFormatType) Values() []FileFormatType {
return []FileFormatType{
"JSON",
"PARQUET",
}
}
type LoggingLevel string
// Enum values for LoggingLevel
const (
LoggingLevelError LoggingLevel = "ERROR"
)
// Values returns all known values for LoggingLevel. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LoggingLevel) Values() []LoggingLevel {
return []LoggingLevel{
"ERROR",
}
}
type ReprocessingStatus string
// Enum values for ReprocessingStatus
const (
ReprocessingStatusRunning ReprocessingStatus = "RUNNING"
ReprocessingStatusSucceeded ReprocessingStatus = "SUCCEEDED"
ReprocessingStatusCancelled ReprocessingStatus = "CANCELLED"
ReprocessingStatusFailed ReprocessingStatus = "FAILED"
)
// Values returns all known values for ReprocessingStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ReprocessingStatus) Values() []ReprocessingStatus {
return []ReprocessingStatus{
"RUNNING",
"SUCCEEDED",
"CANCELLED",
"FAILED",
}
}
|