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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AccountTargeting string
// Enum values for AccountTargeting
const (
AccountTargetingSingleAccount AccountTargeting = "single-account"
AccountTargetingMultiAccount AccountTargeting = "multi-account"
)
// Values returns all known values for AccountTargeting. 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 (AccountTargeting) Values() []AccountTargeting {
return []AccountTargeting{
"single-account",
"multi-account",
}
}
type EmptyTargetResolutionMode string
// Enum values for EmptyTargetResolutionMode
const (
EmptyTargetResolutionModeFail EmptyTargetResolutionMode = "fail"
EmptyTargetResolutionModeSkip EmptyTargetResolutionMode = "skip"
)
// Values returns all known values for EmptyTargetResolutionMode. 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 (EmptyTargetResolutionMode) Values() []EmptyTargetResolutionMode {
return []EmptyTargetResolutionMode{
"fail",
"skip",
}
}
type ExperimentActionStatus string
// Enum values for ExperimentActionStatus
const (
ExperimentActionStatusPending ExperimentActionStatus = "pending"
ExperimentActionStatusInitiating ExperimentActionStatus = "initiating"
ExperimentActionStatusRunning ExperimentActionStatus = "running"
ExperimentActionStatusCompleted ExperimentActionStatus = "completed"
ExperimentActionStatusCancelled ExperimentActionStatus = "cancelled"
ExperimentActionStatusStopping ExperimentActionStatus = "stopping"
ExperimentActionStatusStopped ExperimentActionStatus = "stopped"
ExperimentActionStatusFailed ExperimentActionStatus = "failed"
ExperimentActionStatusSkipped ExperimentActionStatus = "skipped"
)
// Values returns all known values for ExperimentActionStatus. 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 (ExperimentActionStatus) Values() []ExperimentActionStatus {
return []ExperimentActionStatus{
"pending",
"initiating",
"running",
"completed",
"cancelled",
"stopping",
"stopped",
"failed",
"skipped",
}
}
type ExperimentStatus string
// Enum values for ExperimentStatus
const (
ExperimentStatusPending ExperimentStatus = "pending"
ExperimentStatusInitiating ExperimentStatus = "initiating"
ExperimentStatusRunning ExperimentStatus = "running"
ExperimentStatusCompleted ExperimentStatus = "completed"
ExperimentStatusStopping ExperimentStatus = "stopping"
ExperimentStatusStopped ExperimentStatus = "stopped"
ExperimentStatusFailed ExperimentStatus = "failed"
)
// Values returns all known values for ExperimentStatus. 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 (ExperimentStatus) Values() []ExperimentStatus {
return []ExperimentStatus{
"pending",
"initiating",
"running",
"completed",
"stopping",
"stopped",
"failed",
}
}
|