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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ConflictExceptionReason string
// Enum values for ConflictExceptionReason
const (
ConflictExceptionReasonInvalidRuleState ConflictExceptionReason = "INVALID_RULE_STATE"
)
// 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{
"INVALID_RULE_STATE",
}
}
type LockState string
// Enum values for LockState
const (
LockStateLocked LockState = "locked"
LockStatePendingUnlock LockState = "pending_unlock"
LockStateUnlocked LockState = "unlocked"
)
// Values returns all known values for LockState. 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 (LockState) Values() []LockState {
return []LockState{
"locked",
"pending_unlock",
"unlocked",
}
}
type ResourceNotFoundExceptionReason string
// Enum values for ResourceNotFoundExceptionReason
const (
ResourceNotFoundExceptionReasonRuleNotFound ResourceNotFoundExceptionReason = "RULE_NOT_FOUND"
)
// Values returns all known values for ResourceNotFoundExceptionReason. 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 (ResourceNotFoundExceptionReason) Values() []ResourceNotFoundExceptionReason {
return []ResourceNotFoundExceptionReason{
"RULE_NOT_FOUND",
}
}
type ResourceType string
// Enum values for ResourceType
const (
ResourceTypeEbsSnapshot ResourceType = "EBS_SNAPSHOT"
ResourceTypeEc2Image ResourceType = "EC2_IMAGE"
)
// Values returns all known values for ResourceType. 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 (ResourceType) Values() []ResourceType {
return []ResourceType{
"EBS_SNAPSHOT",
"EC2_IMAGE",
}
}
type RetentionPeriodUnit string
// Enum values for RetentionPeriodUnit
const (
RetentionPeriodUnitDays RetentionPeriodUnit = "DAYS"
)
// Values returns all known values for RetentionPeriodUnit. 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 (RetentionPeriodUnit) Values() []RetentionPeriodUnit {
return []RetentionPeriodUnit{
"DAYS",
}
}
type RuleStatus string
// Enum values for RuleStatus
const (
RuleStatusPending RuleStatus = "pending"
RuleStatusAvailable RuleStatus = "available"
)
// Values returns all known values for RuleStatus. 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 (RuleStatus) Values() []RuleStatus {
return []RuleStatus{
"pending",
"available",
}
}
type ServiceQuotaExceededExceptionReason string
// Enum values for ServiceQuotaExceededExceptionReason
const (
ServiceQuotaExceededExceptionReasonServiceQuotaExceeded ServiceQuotaExceededExceptionReason = "SERVICE_QUOTA_EXCEEDED"
)
// Values returns all known values for ServiceQuotaExceededExceptionReason. 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 (ServiceQuotaExceededExceptionReason) Values() []ServiceQuotaExceededExceptionReason {
return []ServiceQuotaExceededExceptionReason{
"SERVICE_QUOTA_EXCEEDED",
}
}
type UnlockDelayUnit string
// Enum values for UnlockDelayUnit
const (
UnlockDelayUnitDays UnlockDelayUnit = "DAYS"
)
// Values returns all known values for UnlockDelayUnit. 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 (UnlockDelayUnit) Values() []UnlockDelayUnit {
return []UnlockDelayUnit{
"DAYS",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonInvalidPageToken ValidationExceptionReason = "INVALID_PAGE_TOKEN"
ValidationExceptionReasonInvalidParameterValue ValidationExceptionReason = "INVALID_PARAMETER_VALUE"
)
// 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{
"INVALID_PAGE_TOKEN",
"INVALID_PARAMETER_VALUE",
}
}
|