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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ControlOperationStatus string
// Enum values for ControlOperationStatus
const (
ControlOperationStatusSucceeded ControlOperationStatus = "SUCCEEDED"
ControlOperationStatusFailed ControlOperationStatus = "FAILED"
ControlOperationStatusInProgress ControlOperationStatus = "IN_PROGRESS"
)
// Values returns all known values for ControlOperationStatus. 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 (ControlOperationStatus) Values() []ControlOperationStatus {
return []ControlOperationStatus{
"SUCCEEDED",
"FAILED",
"IN_PROGRESS",
}
}
type ControlOperationType string
// Enum values for ControlOperationType
const (
ControlOperationTypeEnableControl ControlOperationType = "ENABLE_CONTROL"
ControlOperationTypeDisableControl ControlOperationType = "DISABLE_CONTROL"
ControlOperationTypeUpdateEnabledControl ControlOperationType = "UPDATE_ENABLED_CONTROL"
)
// Values returns all known values for ControlOperationType. 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 (ControlOperationType) Values() []ControlOperationType {
return []ControlOperationType{
"ENABLE_CONTROL",
"DISABLE_CONTROL",
"UPDATE_ENABLED_CONTROL",
}
}
type DriftStatus string
// Enum values for DriftStatus
const (
DriftStatusDrifted DriftStatus = "DRIFTED"
DriftStatusInSync DriftStatus = "IN_SYNC"
DriftStatusNotChecking DriftStatus = "NOT_CHECKING"
DriftStatusUnknown DriftStatus = "UNKNOWN"
)
// Values returns all known values for DriftStatus. 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 (DriftStatus) Values() []DriftStatus {
return []DriftStatus{
"DRIFTED",
"IN_SYNC",
"NOT_CHECKING",
"UNKNOWN",
}
}
type EnablementStatus string
// Enum values for EnablementStatus
const (
EnablementStatusSucceeded EnablementStatus = "SUCCEEDED"
EnablementStatusFailed EnablementStatus = "FAILED"
EnablementStatusUnderChange EnablementStatus = "UNDER_CHANGE"
)
// Values returns all known values for EnablementStatus. 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 (EnablementStatus) Values() []EnablementStatus {
return []EnablementStatus{
"SUCCEEDED",
"FAILED",
"UNDER_CHANGE",
}
}
type LandingZoneDriftStatus string
// Enum values for LandingZoneDriftStatus
const (
LandingZoneDriftStatusDrifted LandingZoneDriftStatus = "DRIFTED"
LandingZoneDriftStatusInSync LandingZoneDriftStatus = "IN_SYNC"
)
// Values returns all known values for LandingZoneDriftStatus. 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 (LandingZoneDriftStatus) Values() []LandingZoneDriftStatus {
return []LandingZoneDriftStatus{
"DRIFTED",
"IN_SYNC",
}
}
type LandingZoneOperationStatus string
// Enum values for LandingZoneOperationStatus
const (
LandingZoneOperationStatusSucceeded LandingZoneOperationStatus = "SUCCEEDED"
LandingZoneOperationStatusFailed LandingZoneOperationStatus = "FAILED"
LandingZoneOperationStatusInProgress LandingZoneOperationStatus = "IN_PROGRESS"
)
// Values returns all known values for LandingZoneOperationStatus. 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 (LandingZoneOperationStatus) Values() []LandingZoneOperationStatus {
return []LandingZoneOperationStatus{
"SUCCEEDED",
"FAILED",
"IN_PROGRESS",
}
}
type LandingZoneOperationType string
// Enum values for LandingZoneOperationType
const (
LandingZoneOperationTypeDelete LandingZoneOperationType = "DELETE"
LandingZoneOperationTypeCreate LandingZoneOperationType = "CREATE"
LandingZoneOperationTypeUpdate LandingZoneOperationType = "UPDATE"
LandingZoneOperationTypeReset LandingZoneOperationType = "RESET"
)
// Values returns all known values for LandingZoneOperationType. 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 (LandingZoneOperationType) Values() []LandingZoneOperationType {
return []LandingZoneOperationType{
"DELETE",
"CREATE",
"UPDATE",
"RESET",
}
}
type LandingZoneStatus string
// Enum values for LandingZoneStatus
const (
LandingZoneStatusActive LandingZoneStatus = "ACTIVE"
LandingZoneStatusProcessing LandingZoneStatus = "PROCESSING"
LandingZoneStatusFailed LandingZoneStatus = "FAILED"
)
// Values returns all known values for LandingZoneStatus. 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 (LandingZoneStatus) Values() []LandingZoneStatus {
return []LandingZoneStatus{
"ACTIVE",
"PROCESSING",
"FAILED",
}
}
|