// Code generated by smithy-go-codegen DO NOT EDIT. package types type AuthenticationType string // Enum values for AuthenticationType const ( AuthenticationTypePassword AuthenticationType = "password" AuthenticationTypeNoPassword AuthenticationType = "no-password" AuthenticationTypeIam AuthenticationType = "iam" ) // Values returns all known values for AuthenticationType. 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 (AuthenticationType) Values() []AuthenticationType { return []AuthenticationType{ "password", "no-password", "iam", } } type AZStatus string // Enum values for AZStatus const ( AZStatusSingleAZ AZStatus = "singleaz" AZStatusMultiAZ AZStatus = "multiaz" ) // Values returns all known values for AZStatus. 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 (AZStatus) Values() []AZStatus { return []AZStatus{ "singleaz", "multiaz", } } type DataTieringStatus string // Enum values for DataTieringStatus const ( DataTieringStatusTrue DataTieringStatus = "true" DataTieringStatusFalse DataTieringStatus = "false" ) // Values returns all known values for DataTieringStatus. 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 (DataTieringStatus) Values() []DataTieringStatus { return []DataTieringStatus{ "true", "false", } } type InputAuthenticationType string // Enum values for InputAuthenticationType const ( InputAuthenticationTypePassword InputAuthenticationType = "password" InputAuthenticationTypeIam InputAuthenticationType = "iam" ) // Values returns all known values for InputAuthenticationType. 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 (InputAuthenticationType) Values() []InputAuthenticationType { return []InputAuthenticationType{ "password", "iam", } } type ServiceUpdateStatus string // Enum values for ServiceUpdateStatus const ( ServiceUpdateStatusNotApplied ServiceUpdateStatus = "available" ServiceUpdateStatusInProgress ServiceUpdateStatus = "in-progress" ServiceUpdateStatusComplete ServiceUpdateStatus = "complete" ServiceUpdateStatusScheduled ServiceUpdateStatus = "scheduled" ) // Values returns all known values for ServiceUpdateStatus. 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 (ServiceUpdateStatus) Values() []ServiceUpdateStatus { return []ServiceUpdateStatus{ "available", "in-progress", "complete", "scheduled", } } type ServiceUpdateType string // Enum values for ServiceUpdateType const ( ServiceUpdateTypeSecurityUpdate ServiceUpdateType = "security-update" ) // Values returns all known values for ServiceUpdateType. 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 (ServiceUpdateType) Values() []ServiceUpdateType { return []ServiceUpdateType{ "security-update", } } type SourceType string // Enum values for SourceType const ( SourceTypeNode SourceType = "node" SourceTypeParameterGroup SourceType = "parameter-group" SourceTypeSubnetGroup SourceType = "subnet-group" SourceTypeCluster SourceType = "cluster" SourceTypeUser SourceType = "user" SourceTypeAcl SourceType = "acl" ) // 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{ "node", "parameter-group", "subnet-group", "cluster", "user", "acl", } }