// Code generated by smithy-go-codegen DO NOT EDIT. package types type AppliedStatus string // Enum values for AppliedStatus const ( AppliedStatusApplied AppliedStatus = "APPLIED" AppliedStatusNotApplied AppliedStatus = "NOT_APPLIED" ) // Values returns all known values for AppliedStatus. 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 (AppliedStatus) Values() []AppliedStatus { return []AppliedStatus{ "APPLIED", "NOT_APPLIED", } } type ConflictExceptionReason string // Enum values for ConflictExceptionReason const ( ConflictExceptionReasonZonalShiftAlreadyExists ConflictExceptionReason = "ZonalShiftAlreadyExists" ConflictExceptionReasonZonalShiftStatusNotActive ConflictExceptionReason = "ZonalShiftStatusNotActive" ConflictExceptionReasonSimultaneousZonalShiftsConflict ConflictExceptionReason = "SimultaneousZonalShiftsConflict" ) // Values returns all known values for ConflictExceptionReason. 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 (ConflictExceptionReason) Values() []ConflictExceptionReason { return []ConflictExceptionReason{ "ZonalShiftAlreadyExists", "ZonalShiftStatusNotActive", "SimultaneousZonalShiftsConflict", } } type ValidationExceptionReason string // Enum values for ValidationExceptionReason const ( ValidationExceptionReasonInvalidExpiresIn ValidationExceptionReason = "InvalidExpiresIn" ValidationExceptionReasonInvalidStatus ValidationExceptionReason = "InvalidStatus" ValidationExceptionReasonMissingValue ValidationExceptionReason = "MissingValue" ValidationExceptionReasonInvalidToken ValidationExceptionReason = "InvalidToken" ValidationExceptionReasonInvalidResourceIdentifier ValidationExceptionReason = "InvalidResourceIdentifier" ValidationExceptionReasonInvalidAz ValidationExceptionReason = "InvalidAz" ValidationExceptionReasonUnsupportedAz ValidationExceptionReason = "UnsupportedAz" ) // Values returns all known values for ValidationExceptionReason. 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 (ValidationExceptionReason) Values() []ValidationExceptionReason { return []ValidationExceptionReason{ "InvalidExpiresIn", "InvalidStatus", "MissingValue", "InvalidToken", "InvalidResourceIdentifier", "InvalidAz", "UnsupportedAz", } } type ZonalShiftStatus string // Enum values for ZonalShiftStatus const ( ZonalShiftStatusActive ZonalShiftStatus = "ACTIVE" ZonalShiftStatusExpired ZonalShiftStatus = "EXPIRED" ZonalShiftStatusCanceled ZonalShiftStatus = "CANCELED" ) // Values returns all known values for ZonalShiftStatus. 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 (ZonalShiftStatus) Values() []ZonalShiftStatus { return []ZonalShiftStatus{ "ACTIVE", "EXPIRED", "CANCELED", } }