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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ChangeType string
// Enum values for ChangeType
const (
ChangeTypeImmediate ChangeType = "IMMEDIATE"
ChangeTypeRequiresReboot ChangeType = "REQUIRES_REBOOT"
)
// Values returns all known values for ChangeType. 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 (ChangeType) Values() []ChangeType {
return []ChangeType{
"IMMEDIATE",
"REQUIRES_REBOOT",
}
}
type ClusterEndpointEncryptionType string
// Enum values for ClusterEndpointEncryptionType
const (
ClusterEndpointEncryptionTypeNone ClusterEndpointEncryptionType = "NONE"
ClusterEndpointEncryptionTypeTls ClusterEndpointEncryptionType = "TLS"
)
// Values returns all known values for ClusterEndpointEncryptionType. 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 (ClusterEndpointEncryptionType) Values() []ClusterEndpointEncryptionType {
return []ClusterEndpointEncryptionType{
"NONE",
"TLS",
}
}
type IsModifiable string
// Enum values for IsModifiable
const (
IsModifiableTrue IsModifiable = "TRUE"
IsModifiableFalse IsModifiable = "FALSE"
IsModifiableConditional IsModifiable = "CONDITIONAL"
)
// Values returns all known values for IsModifiable. 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 (IsModifiable) Values() []IsModifiable {
return []IsModifiable{
"TRUE",
"FALSE",
"CONDITIONAL",
}
}
type ParameterType string
// Enum values for ParameterType
const (
ParameterTypeDefault ParameterType = "DEFAULT"
ParameterTypeNodeTypeSpecific ParameterType = "NODE_TYPE_SPECIFIC"
)
// Values returns all known values for ParameterType. 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 (ParameterType) Values() []ParameterType {
return []ParameterType{
"DEFAULT",
"NODE_TYPE_SPECIFIC",
}
}
type SourceType string
// Enum values for SourceType
const (
SourceTypeCluster SourceType = "CLUSTER"
SourceTypeParameterGroup SourceType = "PARAMETER_GROUP"
SourceTypeSubnetGroup SourceType = "SUBNET_GROUP"
)
// Values returns all known values for SourceType. 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 (SourceType) Values() []SourceType {
return []SourceType{
"CLUSTER",
"PARAMETER_GROUP",
"SUBNET_GROUP",
}
}
type SSEStatus string
// Enum values for SSEStatus
const (
SSEStatusEnabling SSEStatus = "ENABLING"
SSEStatusEnabled SSEStatus = "ENABLED"
SSEStatusDisabling SSEStatus = "DISABLING"
SSEStatusDisabled SSEStatus = "DISABLED"
)
// Values returns all known values for SSEStatus. 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 (SSEStatus) Values() []SSEStatus {
return []SSEStatus{
"ENABLING",
"ENABLED",
"DISABLING",
"DISABLED",
}
}
|