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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ClientSideTimestampsStatus string
// Enum values for ClientSideTimestampsStatus
const (
ClientSideTimestampsStatusEnabled ClientSideTimestampsStatus = "ENABLED"
)
// Values returns all known values for ClientSideTimestampsStatus. 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 (ClientSideTimestampsStatus) Values() []ClientSideTimestampsStatus {
return []ClientSideTimestampsStatus{
"ENABLED",
}
}
type EncryptionType string
// Enum values for EncryptionType
const (
EncryptionTypeCustomerManagedKmsKey EncryptionType = "CUSTOMER_MANAGED_KMS_KEY"
EncryptionTypeAwsOwnedKmsKey EncryptionType = "AWS_OWNED_KMS_KEY"
)
// Values returns all known values for EncryptionType. 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 (EncryptionType) Values() []EncryptionType {
return []EncryptionType{
"CUSTOMER_MANAGED_KMS_KEY",
"AWS_OWNED_KMS_KEY",
}
}
type PointInTimeRecoveryStatus string
// Enum values for PointInTimeRecoveryStatus
const (
PointInTimeRecoveryStatusEnabled PointInTimeRecoveryStatus = "ENABLED"
PointInTimeRecoveryStatusDisabled PointInTimeRecoveryStatus = "DISABLED"
)
// Values returns all known values for PointInTimeRecoveryStatus. 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 (PointInTimeRecoveryStatus) Values() []PointInTimeRecoveryStatus {
return []PointInTimeRecoveryStatus{
"ENABLED",
"DISABLED",
}
}
type Rs string
// Enum values for Rs
const (
RsSingleRegion Rs = "SINGLE_REGION"
RsMultiRegion Rs = "MULTI_REGION"
)
// Values returns all known values for Rs. 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 (Rs) Values() []Rs {
return []Rs{
"SINGLE_REGION",
"MULTI_REGION",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAsc SortOrder = "ASC"
SortOrderDesc SortOrder = "DESC"
)
// Values returns all known values for SortOrder. 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 (SortOrder) Values() []SortOrder {
return []SortOrder{
"ASC",
"DESC",
}
}
type TableStatus string
// Enum values for TableStatus
const (
TableStatusActive TableStatus = "ACTIVE"
TableStatusCreating TableStatus = "CREATING"
TableStatusUpdating TableStatus = "UPDATING"
TableStatusDeleting TableStatus = "DELETING"
TableStatusDeleted TableStatus = "DELETED"
TableStatusRestoring TableStatus = "RESTORING"
TableStatusInaccessibleEncryptionCredentials TableStatus = "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
)
// 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",
"CREATING",
"UPDATING",
"DELETING",
"DELETED",
"RESTORING",
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
}
}
type ThroughputMode string
// Enum values for ThroughputMode
const (
ThroughputModePayPerRequest ThroughputMode = "PAY_PER_REQUEST"
ThroughputModeProvisioned ThroughputMode = "PROVISIONED"
)
// Values returns all known values for ThroughputMode. 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 (ThroughputMode) Values() []ThroughputMode {
return []ThroughputMode{
"PAY_PER_REQUEST",
"PROVISIONED",
}
}
type TimeToLiveStatus string
// Enum values for TimeToLiveStatus
const (
TimeToLiveStatusEnabled TimeToLiveStatus = "ENABLED"
)
// Values returns all known values for TimeToLiveStatus. 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 (TimeToLiveStatus) Values() []TimeToLiveStatus {
return []TimeToLiveStatus{
"ENABLED",
}
}
|