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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type KeyType string
// Enum values for KeyType
const (
KeyTypeHash KeyType = "HASH"
KeyTypeRange KeyType = "RANGE"
)
// Values returns all known values for KeyType. 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 (KeyType) Values() []KeyType {
return []KeyType{
"HASH",
"RANGE",
}
}
type OperationType string
// Enum values for OperationType
const (
OperationTypeInsert OperationType = "INSERT"
OperationTypeModify OperationType = "MODIFY"
OperationTypeRemove OperationType = "REMOVE"
)
// Values returns all known values for OperationType. 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 (OperationType) Values() []OperationType {
return []OperationType{
"INSERT",
"MODIFY",
"REMOVE",
}
}
type ShardIteratorType string
// Enum values for ShardIteratorType
const (
ShardIteratorTypeTrimHorizon ShardIteratorType = "TRIM_HORIZON"
ShardIteratorTypeLatest ShardIteratorType = "LATEST"
ShardIteratorTypeAtSequenceNumber ShardIteratorType = "AT_SEQUENCE_NUMBER"
ShardIteratorTypeAfterSequenceNumber ShardIteratorType = "AFTER_SEQUENCE_NUMBER"
)
// Values returns all known values for ShardIteratorType. 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 (ShardIteratorType) Values() []ShardIteratorType {
return []ShardIteratorType{
"TRIM_HORIZON",
"LATEST",
"AT_SEQUENCE_NUMBER",
"AFTER_SEQUENCE_NUMBER",
}
}
type StreamStatus string
// Enum values for StreamStatus
const (
StreamStatusEnabling StreamStatus = "ENABLING"
StreamStatusEnabled StreamStatus = "ENABLED"
StreamStatusDisabling StreamStatus = "DISABLING"
StreamStatusDisabled StreamStatus = "DISABLED"
)
// Values returns all known values for StreamStatus. 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 (StreamStatus) Values() []StreamStatus {
return []StreamStatus{
"ENABLING",
"ENABLED",
"DISABLING",
"DISABLED",
}
}
type StreamViewType string
// Enum values for StreamViewType
const (
StreamViewTypeNewImage StreamViewType = "NEW_IMAGE"
StreamViewTypeOldImage StreamViewType = "OLD_IMAGE"
StreamViewTypeNewAndOldImages StreamViewType = "NEW_AND_OLD_IMAGES"
StreamViewTypeKeysOnly StreamViewType = "KEYS_ONLY"
)
// Values returns all known values for StreamViewType. 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 (StreamViewType) Values() []StreamViewType {
return []StreamViewType{
"NEW_IMAGE",
"OLD_IMAGE",
"NEW_AND_OLD_IMAGES",
"KEYS_ONLY",
}
}
|