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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ActionStatus string
// Enum values for ActionStatus
const (
ActionStatusStandby ActionStatus = "STANDBY"
ActionStatusPending ActionStatus = "PENDING"
ActionStatusExecutionInProgress ActionStatus = "EXECUTION_IN_PROGRESS"
ActionStatusExecutionSuccess ActionStatus = "EXECUTION_SUCCESS"
ActionStatusExecutionFailure ActionStatus = "EXECUTION_FAILURE"
ActionStatusReverseInProgress ActionStatus = "REVERSE_IN_PROGRESS"
ActionStatusReverseSuccess ActionStatus = "REVERSE_SUCCESS"
ActionStatusReverseFailure ActionStatus = "REVERSE_FAILURE"
ActionStatusResetInProgress ActionStatus = "RESET_IN_PROGRESS"
ActionStatusResetFailure ActionStatus = "RESET_FAILURE"
)
// Values returns all known values for ActionStatus. 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 (ActionStatus) Values() []ActionStatus {
return []ActionStatus{
"STANDBY",
"PENDING",
"EXECUTION_IN_PROGRESS",
"EXECUTION_SUCCESS",
"EXECUTION_FAILURE",
"REVERSE_IN_PROGRESS",
"REVERSE_SUCCESS",
"REVERSE_FAILURE",
"RESET_IN_PROGRESS",
"RESET_FAILURE",
}
}
type ActionSubType string
// Enum values for ActionSubType
const (
ActionSubTypeStopEc2 ActionSubType = "STOP_EC2_INSTANCES"
ActionSubTypeStopRds ActionSubType = "STOP_RDS_INSTANCES"
)
// Values returns all known values for ActionSubType. 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 (ActionSubType) Values() []ActionSubType {
return []ActionSubType{
"STOP_EC2_INSTANCES",
"STOP_RDS_INSTANCES",
}
}
type ActionType string
// Enum values for ActionType
const (
ActionTypeIam ActionType = "APPLY_IAM_POLICY"
ActionTypeScp ActionType = "APPLY_SCP_POLICY"
ActionTypeSsm ActionType = "RUN_SSM_DOCUMENTS"
)
// Values returns all known values for ActionType. 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 (ActionType) Values() []ActionType {
return []ActionType{
"APPLY_IAM_POLICY",
"APPLY_SCP_POLICY",
"RUN_SSM_DOCUMENTS",
}
}
type ApprovalModel string
// Enum values for ApprovalModel
const (
ApprovalModelAuto ApprovalModel = "AUTOMATIC"
ApprovalModelManual ApprovalModel = "MANUAL"
)
// Values returns all known values for ApprovalModel. 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 (ApprovalModel) Values() []ApprovalModel {
return []ApprovalModel{
"AUTOMATIC",
"MANUAL",
}
}
type AutoAdjustType string
// Enum values for AutoAdjustType
const (
AutoAdjustTypeHistorical AutoAdjustType = "HISTORICAL"
AutoAdjustTypeForecast AutoAdjustType = "FORECAST"
)
// Values returns all known values for AutoAdjustType. 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 (AutoAdjustType) Values() []AutoAdjustType {
return []AutoAdjustType{
"HISTORICAL",
"FORECAST",
}
}
type BudgetType string
// Enum values for BudgetType
const (
BudgetTypeUsage BudgetType = "USAGE"
BudgetTypeCost BudgetType = "COST"
BudgetTypeRIUtilization BudgetType = "RI_UTILIZATION"
BudgetTypeRICoverage BudgetType = "RI_COVERAGE"
BudgetTypeSPUtilization BudgetType = "SAVINGS_PLANS_UTILIZATION"
BudgetTypeSPCoverage BudgetType = "SAVINGS_PLANS_COVERAGE"
)
// Values returns all known values for BudgetType. 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 (BudgetType) Values() []BudgetType {
return []BudgetType{
"USAGE",
"COST",
"RI_UTILIZATION",
"RI_COVERAGE",
"SAVINGS_PLANS_UTILIZATION",
"SAVINGS_PLANS_COVERAGE",
}
}
type ComparisonOperator string
// Enum values for ComparisonOperator
const (
ComparisonOperatorGreaterThan ComparisonOperator = "GREATER_THAN"
ComparisonOperatorLessThan ComparisonOperator = "LESS_THAN"
ComparisonOperatorEqualTo ComparisonOperator = "EQUAL_TO"
)
// Values returns all known values for ComparisonOperator. 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 (ComparisonOperator) Values() []ComparisonOperator {
return []ComparisonOperator{
"GREATER_THAN",
"LESS_THAN",
"EQUAL_TO",
}
}
type EventType string
// Enum values for EventType
const (
EventTypeSystem EventType = "SYSTEM"
EventTypeCreateAction EventType = "CREATE_ACTION"
EventTypeDeleteAction EventType = "DELETE_ACTION"
EventTypeUpdateAction EventType = "UPDATE_ACTION"
EventTypeExecuteAction EventType = "EXECUTE_ACTION"
)
// Values returns all known values for EventType. 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 (EventType) Values() []EventType {
return []EventType{
"SYSTEM",
"CREATE_ACTION",
"DELETE_ACTION",
"UPDATE_ACTION",
"EXECUTE_ACTION",
}
}
type ExecutionType string
// Enum values for ExecutionType
const (
ExecutionTypeApproveBudgetAction ExecutionType = "APPROVE_BUDGET_ACTION"
ExecutionTypeRetryBudgetAction ExecutionType = "RETRY_BUDGET_ACTION"
ExecutionTypeReverseBudgetAction ExecutionType = "REVERSE_BUDGET_ACTION"
ExecutionTypeResetBudgetAction ExecutionType = "RESET_BUDGET_ACTION"
)
// Values returns all known values for ExecutionType. 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 (ExecutionType) Values() []ExecutionType {
return []ExecutionType{
"APPROVE_BUDGET_ACTION",
"RETRY_BUDGET_ACTION",
"REVERSE_BUDGET_ACTION",
"RESET_BUDGET_ACTION",
}
}
type NotificationState string
// Enum values for NotificationState
const (
NotificationStateOk NotificationState = "OK"
NotificationStateAlarm NotificationState = "ALARM"
)
// Values returns all known values for NotificationState. 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 (NotificationState) Values() []NotificationState {
return []NotificationState{
"OK",
"ALARM",
}
}
type NotificationType string
// Enum values for NotificationType
const (
NotificationTypeActual NotificationType = "ACTUAL"
NotificationTypeForecasted NotificationType = "FORECASTED"
)
// Values returns all known values for NotificationType. 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 (NotificationType) Values() []NotificationType {
return []NotificationType{
"ACTUAL",
"FORECASTED",
}
}
type SubscriptionType string
// Enum values for SubscriptionType
const (
SubscriptionTypeSns SubscriptionType = "SNS"
SubscriptionTypeEmail SubscriptionType = "EMAIL"
)
// Values returns all known values for SubscriptionType. 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 (SubscriptionType) Values() []SubscriptionType {
return []SubscriptionType{
"SNS",
"EMAIL",
}
}
type ThresholdType string
// Enum values for ThresholdType
const (
ThresholdTypePercentage ThresholdType = "PERCENTAGE"
ThresholdTypeAbsoluteValue ThresholdType = "ABSOLUTE_VALUE"
)
// Values returns all known values for ThresholdType. 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 (ThresholdType) Values() []ThresholdType {
return []ThresholdType{
"PERCENTAGE",
"ABSOLUTE_VALUE",
}
}
type TimeUnit string
// Enum values for TimeUnit
const (
TimeUnitDaily TimeUnit = "DAILY"
TimeUnitMonthly TimeUnit = "MONTHLY"
TimeUnitQuarterly TimeUnit = "QUARTERLY"
TimeUnitAnnually TimeUnit = "ANNUALLY"
)
// Values returns all known values for TimeUnit. 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 (TimeUnit) Values() []TimeUnit {
return []TimeUnit{
"DAILY",
"MONTHLY",
"QUARTERLY",
"ANNUALLY",
}
}
|