// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package appconfig type BytesMeasure string // Enum values for BytesMeasure const ( BytesMeasureKilobytes BytesMeasure = "KILOBYTES" ) func (enum BytesMeasure) MarshalValue() (string, error) { return string(enum), nil } func (enum BytesMeasure) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type DeploymentEventType string // Enum values for DeploymentEventType const ( DeploymentEventTypePercentageUpdated DeploymentEventType = "PERCENTAGE_UPDATED" DeploymentEventTypeRollbackStarted DeploymentEventType = "ROLLBACK_STARTED" DeploymentEventTypeRollbackCompleted DeploymentEventType = "ROLLBACK_COMPLETED" DeploymentEventTypeBakeTimeStarted DeploymentEventType = "BAKE_TIME_STARTED" DeploymentEventTypeDeploymentStarted DeploymentEventType = "DEPLOYMENT_STARTED" DeploymentEventTypeDeploymentCompleted DeploymentEventType = "DEPLOYMENT_COMPLETED" ) func (enum DeploymentEventType) MarshalValue() (string, error) { return string(enum), nil } func (enum DeploymentEventType) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type DeploymentState string // Enum values for DeploymentState const ( DeploymentStateBaking DeploymentState = "BAKING" DeploymentStateValidating DeploymentState = "VALIDATING" DeploymentStateDeploying DeploymentState = "DEPLOYING" DeploymentStateComplete DeploymentState = "COMPLETE" DeploymentStateRollingBack DeploymentState = "ROLLING_BACK" DeploymentStateRolledBack DeploymentState = "ROLLED_BACK" ) func (enum DeploymentState) MarshalValue() (string, error) { return string(enum), nil } func (enum DeploymentState) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type EnvironmentState string // Enum values for EnvironmentState const ( EnvironmentStateReadyForDeployment EnvironmentState = "READY_FOR_DEPLOYMENT" EnvironmentStateDeploying EnvironmentState = "DEPLOYING" EnvironmentStateRollingBack EnvironmentState = "ROLLING_BACK" EnvironmentStateRolledBack EnvironmentState = "ROLLED_BACK" ) func (enum EnvironmentState) MarshalValue() (string, error) { return string(enum), nil } func (enum EnvironmentState) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type GrowthType string // Enum values for GrowthType const ( GrowthTypeLinear GrowthType = "LINEAR" GrowthTypeExponential GrowthType = "EXPONENTIAL" ) func (enum GrowthType) MarshalValue() (string, error) { return string(enum), nil } func (enum GrowthType) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type ReplicateTo string // Enum values for ReplicateTo const ( ReplicateToNone ReplicateTo = "NONE" ReplicateToSsmDocument ReplicateTo = "SSM_DOCUMENT" ) func (enum ReplicateTo) MarshalValue() (string, error) { return string(enum), nil } func (enum ReplicateTo) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type TriggeredBy string // Enum values for TriggeredBy const ( TriggeredByUser TriggeredBy = "USER" TriggeredByAppconfig TriggeredBy = "APPCONFIG" TriggeredByCloudwatchAlarm TriggeredBy = "CLOUDWATCH_ALARM" TriggeredByInternalError TriggeredBy = "INTERNAL_ERROR" ) func (enum TriggeredBy) MarshalValue() (string, error) { return string(enum), nil } func (enum TriggeredBy) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type ValidatorType string // Enum values for ValidatorType const ( ValidatorTypeJsonSchema ValidatorType = "JSON_SCHEMA" ValidatorTypeLambda ValidatorType = "LAMBDA" ) func (enum ValidatorType) MarshalValue() (string, error) { return string(enum), nil } func (enum ValidatorType) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil }