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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type CampaignState string
// Enum values for CampaignState
const (
// Campaign is in initialized state
CampaignStateInitialized CampaignState = "Initialized"
// Campaign is in running state
CampaignStateRunning CampaignState = "Running"
// Campaign is in paused state
CampaignStatePaused CampaignState = "Paused"
// Campaign is in stopped state
CampaignStateStopped CampaignState = "Stopped"
// Campaign is in failed state
CampaignStateFailed CampaignState = "Failed"
)
// Values returns all known values for CampaignState. 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 (CampaignState) Values() []CampaignState {
return []CampaignState{
"Initialized",
"Running",
"Paused",
"Stopped",
"Failed",
}
}
type EncryptionType string
// Enum values for EncryptionType
const (
EncryptionTypeKms EncryptionType = "KMS"
)
// Values returns all known values for EncryptionType. 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 (EncryptionType) Values() []EncryptionType {
return []EncryptionType{
"KMS",
}
}
type FailureCode string
// Enum values for FailureCode
const (
// The request failed to satisfy the constraints specified by the service
FailureCodeInvalidInput FailureCode = "InvalidInput"
// Request throttled due to large number of pending dial requests
FailureCodeRequestThrottled FailureCode = "RequestThrottled"
// Unexpected error during processing of request
FailureCodeUnknownError FailureCode = "UnknownError"
)
// Values returns all known values for FailureCode. 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 (FailureCode) Values() []FailureCode {
return []FailureCode{
"InvalidInput",
"RequestThrottled",
"UnknownError",
}
}
type GetCampaignStateBatchFailureCode string
// Enum values for GetCampaignStateBatchFailureCode
const (
// The specified resource was not found
GetCampaignStateBatchFailureCodeResourceNotFound GetCampaignStateBatchFailureCode = "ResourceNotFound"
// Unexpected error during processing of request
GetCampaignStateBatchFailureCodeUnknownError GetCampaignStateBatchFailureCode = "UnknownError"
)
// Values returns all known values for GetCampaignStateBatchFailureCode. 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 (GetCampaignStateBatchFailureCode) Values() []GetCampaignStateBatchFailureCode {
return []GetCampaignStateBatchFailureCode{
"ResourceNotFound",
"UnknownError",
}
}
type InstanceIdFilterOperator string
// Enum values for InstanceIdFilterOperator
const (
// Equals operator
InstanceIdFilterOperatorEq InstanceIdFilterOperator = "Eq"
)
// Values returns all known values for InstanceIdFilterOperator. 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 (InstanceIdFilterOperator) Values() []InstanceIdFilterOperator {
return []InstanceIdFilterOperator{
"Eq",
}
}
type InstanceOnboardingJobFailureCode string
// Enum values for InstanceOnboardingJobFailureCode
const (
InstanceOnboardingJobFailureCodeEventBridgeAccessDenied InstanceOnboardingJobFailureCode = "EVENT_BRIDGE_ACCESS_DENIED"
InstanceOnboardingJobFailureCodeEventBridgeManagedRuleLimitExceeded InstanceOnboardingJobFailureCode = "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED"
InstanceOnboardingJobFailureCodeIamAccessDenied InstanceOnboardingJobFailureCode = "IAM_ACCESS_DENIED"
InstanceOnboardingJobFailureCodeKmsAccessDenied InstanceOnboardingJobFailureCode = "KMS_ACCESS_DENIED"
InstanceOnboardingJobFailureCodeKmsKeyNotFound InstanceOnboardingJobFailureCode = "KMS_KEY_NOT_FOUND"
InstanceOnboardingJobFailureCodeInternalFailure InstanceOnboardingJobFailureCode = "INTERNAL_FAILURE"
)
// Values returns all known values for InstanceOnboardingJobFailureCode. 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 (InstanceOnboardingJobFailureCode) Values() []InstanceOnboardingJobFailureCode {
return []InstanceOnboardingJobFailureCode{
"EVENT_BRIDGE_ACCESS_DENIED",
"EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED",
"IAM_ACCESS_DENIED",
"KMS_ACCESS_DENIED",
"KMS_KEY_NOT_FOUND",
"INTERNAL_FAILURE",
}
}
type InstanceOnboardingJobStatusCode string
// Enum values for InstanceOnboardingJobStatusCode
const (
InstanceOnboardingJobStatusCodeInProgress InstanceOnboardingJobStatusCode = "IN_PROGRESS"
InstanceOnboardingJobStatusCodeSucceeded InstanceOnboardingJobStatusCode = "SUCCEEDED"
InstanceOnboardingJobStatusCodeFailed InstanceOnboardingJobStatusCode = "FAILED"
)
// Values returns all known values for InstanceOnboardingJobStatusCode. 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 (InstanceOnboardingJobStatusCode) Values() []InstanceOnboardingJobStatusCode {
return []InstanceOnboardingJobStatusCode{
"IN_PROGRESS",
"SUCCEEDED",
"FAILED",
}
}
|