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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type BatchLoadDataFormat string
// Enum values for BatchLoadDataFormat
const (
BatchLoadDataFormatCsv BatchLoadDataFormat = "CSV"
)
// Values returns all known values for BatchLoadDataFormat. 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 (BatchLoadDataFormat) Values() []BatchLoadDataFormat {
return []BatchLoadDataFormat{
"CSV",
}
}
type BatchLoadStatus string
// Enum values for BatchLoadStatus
const (
BatchLoadStatusCreated BatchLoadStatus = "CREATED"
BatchLoadStatusInProgress BatchLoadStatus = "IN_PROGRESS"
BatchLoadStatusFailed BatchLoadStatus = "FAILED"
BatchLoadStatusSucceeded BatchLoadStatus = "SUCCEEDED"
BatchLoadStatusProgressStopped BatchLoadStatus = "PROGRESS_STOPPED"
BatchLoadStatusPendingResume BatchLoadStatus = "PENDING_RESUME"
)
// Values returns all known values for BatchLoadStatus. 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 (BatchLoadStatus) Values() []BatchLoadStatus {
return []BatchLoadStatus{
"CREATED",
"IN_PROGRESS",
"FAILED",
"SUCCEEDED",
"PROGRESS_STOPPED",
"PENDING_RESUME",
}
}
type DimensionValueType string
// Enum values for DimensionValueType
const (
DimensionValueTypeVarchar DimensionValueType = "VARCHAR"
)
// Values returns all known values for DimensionValueType. 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 (DimensionValueType) Values() []DimensionValueType {
return []DimensionValueType{
"VARCHAR",
}
}
type MeasureValueType string
// Enum values for MeasureValueType
const (
MeasureValueTypeDouble MeasureValueType = "DOUBLE"
MeasureValueTypeBigint MeasureValueType = "BIGINT"
MeasureValueTypeVarchar MeasureValueType = "VARCHAR"
MeasureValueTypeBoolean MeasureValueType = "BOOLEAN"
MeasureValueTypeTimestamp MeasureValueType = "TIMESTAMP"
MeasureValueTypeMulti MeasureValueType = "MULTI"
)
// Values returns all known values for MeasureValueType. 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 (MeasureValueType) Values() []MeasureValueType {
return []MeasureValueType{
"DOUBLE",
"BIGINT",
"VARCHAR",
"BOOLEAN",
"TIMESTAMP",
"MULTI",
}
}
type PartitionKeyEnforcementLevel string
// Enum values for PartitionKeyEnforcementLevel
const (
PartitionKeyEnforcementLevelRequired PartitionKeyEnforcementLevel = "REQUIRED"
PartitionKeyEnforcementLevelOptional PartitionKeyEnforcementLevel = "OPTIONAL"
)
// Values returns all known values for PartitionKeyEnforcementLevel. 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 (PartitionKeyEnforcementLevel) Values() []PartitionKeyEnforcementLevel {
return []PartitionKeyEnforcementLevel{
"REQUIRED",
"OPTIONAL",
}
}
type PartitionKeyType string
// Enum values for PartitionKeyType
const (
PartitionKeyTypeDimension PartitionKeyType = "DIMENSION"
PartitionKeyTypeMeasure PartitionKeyType = "MEASURE"
)
// Values returns all known values for PartitionKeyType. 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 (PartitionKeyType) Values() []PartitionKeyType {
return []PartitionKeyType{
"DIMENSION",
"MEASURE",
}
}
type S3EncryptionOption string
// Enum values for S3EncryptionOption
const (
S3EncryptionOptionSseS3 S3EncryptionOption = "SSE_S3"
S3EncryptionOptionSseKms S3EncryptionOption = "SSE_KMS"
)
// Values returns all known values for S3EncryptionOption. 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 (S3EncryptionOption) Values() []S3EncryptionOption {
return []S3EncryptionOption{
"SSE_S3",
"SSE_KMS",
}
}
type ScalarMeasureValueType string
// Enum values for ScalarMeasureValueType
const (
ScalarMeasureValueTypeDouble ScalarMeasureValueType = "DOUBLE"
ScalarMeasureValueTypeBigint ScalarMeasureValueType = "BIGINT"
ScalarMeasureValueTypeBoolean ScalarMeasureValueType = "BOOLEAN"
ScalarMeasureValueTypeVarchar ScalarMeasureValueType = "VARCHAR"
ScalarMeasureValueTypeTimestamp ScalarMeasureValueType = "TIMESTAMP"
)
// Values returns all known values for ScalarMeasureValueType. 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 (ScalarMeasureValueType) Values() []ScalarMeasureValueType {
return []ScalarMeasureValueType{
"DOUBLE",
"BIGINT",
"BOOLEAN",
"VARCHAR",
"TIMESTAMP",
}
}
type TableStatus string
// Enum values for TableStatus
const (
TableStatusActive TableStatus = "ACTIVE"
TableStatusDeleting TableStatus = "DELETING"
TableStatusRestoring TableStatus = "RESTORING"
)
// Values returns all known values for TableStatus. 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 (TableStatus) Values() []TableStatus {
return []TableStatus{
"ACTIVE",
"DELETING",
"RESTORING",
}
}
type TimeUnit string
// Enum values for TimeUnit
const (
TimeUnitMilliseconds TimeUnit = "MILLISECONDS"
TimeUnitSeconds TimeUnit = "SECONDS"
TimeUnitMicroseconds TimeUnit = "MICROSECONDS"
TimeUnitNanoseconds TimeUnit = "NANOSECONDS"
)
// Values returns all known values for TimeUnit. 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 (TimeUnit) Values() []TimeUnit {
return []TimeUnit{
"MILLISECONDS",
"SECONDS",
"MICROSECONDS",
"NANOSECONDS",
}
}
|