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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ConnectorState string
// Enum values for ConnectorState
const (
ConnectorStateRunning ConnectorState = "RUNNING"
ConnectorStateCreating ConnectorState = "CREATING"
ConnectorStateUpdating ConnectorState = "UPDATING"
ConnectorStateDeleting ConnectorState = "DELETING"
ConnectorStateFailed ConnectorState = "FAILED"
)
// Values returns all known values for ConnectorState. 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 (ConnectorState) Values() []ConnectorState {
return []ConnectorState{
"RUNNING",
"CREATING",
"UPDATING",
"DELETING",
"FAILED",
}
}
type CustomPluginContentType string
// Enum values for CustomPluginContentType
const (
CustomPluginContentTypeJar CustomPluginContentType = "JAR"
CustomPluginContentTypeZip CustomPluginContentType = "ZIP"
)
// Values returns all known values for CustomPluginContentType. 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 (CustomPluginContentType) Values() []CustomPluginContentType {
return []CustomPluginContentType{
"JAR",
"ZIP",
}
}
type CustomPluginState string
// Enum values for CustomPluginState
const (
CustomPluginStateCreating CustomPluginState = "CREATING"
CustomPluginStateCreateFailed CustomPluginState = "CREATE_FAILED"
CustomPluginStateActive CustomPluginState = "ACTIVE"
CustomPluginStateUpdating CustomPluginState = "UPDATING"
CustomPluginStateUpdateFailed CustomPluginState = "UPDATE_FAILED"
CustomPluginStateDeleting CustomPluginState = "DELETING"
)
// Values returns all known values for CustomPluginState. 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 (CustomPluginState) Values() []CustomPluginState {
return []CustomPluginState{
"CREATING",
"CREATE_FAILED",
"ACTIVE",
"UPDATING",
"UPDATE_FAILED",
"DELETING",
}
}
type KafkaClusterClientAuthenticationType string
// Enum values for KafkaClusterClientAuthenticationType
const (
KafkaClusterClientAuthenticationTypeNone KafkaClusterClientAuthenticationType = "NONE"
KafkaClusterClientAuthenticationTypeIam KafkaClusterClientAuthenticationType = "IAM"
)
// Values returns all known values for KafkaClusterClientAuthenticationType. 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 (KafkaClusterClientAuthenticationType) Values() []KafkaClusterClientAuthenticationType {
return []KafkaClusterClientAuthenticationType{
"NONE",
"IAM",
}
}
type KafkaClusterEncryptionInTransitType string
// Enum values for KafkaClusterEncryptionInTransitType
const (
KafkaClusterEncryptionInTransitTypePlaintext KafkaClusterEncryptionInTransitType = "PLAINTEXT"
KafkaClusterEncryptionInTransitTypeTls KafkaClusterEncryptionInTransitType = "TLS"
)
// Values returns all known values for KafkaClusterEncryptionInTransitType. 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 (KafkaClusterEncryptionInTransitType) Values() []KafkaClusterEncryptionInTransitType {
return []KafkaClusterEncryptionInTransitType{
"PLAINTEXT",
"TLS",
}
}
|