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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type DefaultPoliciesTypeValues string
// Enum values for DefaultPoliciesTypeValues
const (
DefaultPoliciesTypeValuesVolume DefaultPoliciesTypeValues = "VOLUME"
DefaultPoliciesTypeValuesInstance DefaultPoliciesTypeValues = "INSTANCE"
DefaultPoliciesTypeValuesAll DefaultPoliciesTypeValues = "ALL"
)
// Values returns all known values for DefaultPoliciesTypeValues. 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 (DefaultPoliciesTypeValues) Values() []DefaultPoliciesTypeValues {
return []DefaultPoliciesTypeValues{
"VOLUME",
"INSTANCE",
"ALL",
}
}
type DefaultPolicyTypeValues string
// Enum values for DefaultPolicyTypeValues
const (
DefaultPolicyTypeValuesVolume DefaultPolicyTypeValues = "VOLUME"
DefaultPolicyTypeValuesInstance DefaultPolicyTypeValues = "INSTANCE"
)
// Values returns all known values for DefaultPolicyTypeValues. 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 (DefaultPolicyTypeValues) Values() []DefaultPolicyTypeValues {
return []DefaultPolicyTypeValues{
"VOLUME",
"INSTANCE",
}
}
type EventSourceValues string
// Enum values for EventSourceValues
const (
EventSourceValuesManagedCwe EventSourceValues = "MANAGED_CWE"
)
// Values returns all known values for EventSourceValues. 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 (EventSourceValues) Values() []EventSourceValues {
return []EventSourceValues{
"MANAGED_CWE",
}
}
type EventTypeValues string
// Enum values for EventTypeValues
const (
EventTypeValuesShareSnapshot EventTypeValues = "shareSnapshot"
)
// Values returns all known values for EventTypeValues. 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 (EventTypeValues) Values() []EventTypeValues {
return []EventTypeValues{
"shareSnapshot",
}
}
type ExecutionHandlerServiceValues string
// Enum values for ExecutionHandlerServiceValues
const (
ExecutionHandlerServiceValuesAwsSystemsManager ExecutionHandlerServiceValues = "AWS_SYSTEMS_MANAGER"
)
// Values returns all known values for ExecutionHandlerServiceValues. 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 (ExecutionHandlerServiceValues) Values() []ExecutionHandlerServiceValues {
return []ExecutionHandlerServiceValues{
"AWS_SYSTEMS_MANAGER",
}
}
type GettablePolicyStateValues string
// Enum values for GettablePolicyStateValues
const (
GettablePolicyStateValuesEnabled GettablePolicyStateValues = "ENABLED"
GettablePolicyStateValuesDisabled GettablePolicyStateValues = "DISABLED"
GettablePolicyStateValuesError GettablePolicyStateValues = "ERROR"
)
// Values returns all known values for GettablePolicyStateValues. 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 (GettablePolicyStateValues) Values() []GettablePolicyStateValues {
return []GettablePolicyStateValues{
"ENABLED",
"DISABLED",
"ERROR",
}
}
type IntervalUnitValues string
// Enum values for IntervalUnitValues
const (
IntervalUnitValuesHours IntervalUnitValues = "HOURS"
)
// Values returns all known values for IntervalUnitValues. 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 (IntervalUnitValues) Values() []IntervalUnitValues {
return []IntervalUnitValues{
"HOURS",
}
}
type LocationValues string
// Enum values for LocationValues
const (
LocationValuesCloud LocationValues = "CLOUD"
LocationValuesOutpostLocal LocationValues = "OUTPOST_LOCAL"
)
// Values returns all known values for LocationValues. 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 (LocationValues) Values() []LocationValues {
return []LocationValues{
"CLOUD",
"OUTPOST_LOCAL",
}
}
type PolicyLanguageValues string
// Enum values for PolicyLanguageValues
const (
PolicyLanguageValuesSimplified PolicyLanguageValues = "SIMPLIFIED"
PolicyLanguageValuesStandard PolicyLanguageValues = "STANDARD"
)
// Values returns all known values for PolicyLanguageValues. 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 (PolicyLanguageValues) Values() []PolicyLanguageValues {
return []PolicyLanguageValues{
"SIMPLIFIED",
"STANDARD",
}
}
type PolicyTypeValues string
// Enum values for PolicyTypeValues
const (
PolicyTypeValuesEbsSnapshotManagement PolicyTypeValues = "EBS_SNAPSHOT_MANAGEMENT"
PolicyTypeValuesImageManagement PolicyTypeValues = "IMAGE_MANAGEMENT"
PolicyTypeValuesEventBasedPolicy PolicyTypeValues = "EVENT_BASED_POLICY"
)
// Values returns all known values for PolicyTypeValues. 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 (PolicyTypeValues) Values() []PolicyTypeValues {
return []PolicyTypeValues{
"EBS_SNAPSHOT_MANAGEMENT",
"IMAGE_MANAGEMENT",
"EVENT_BASED_POLICY",
}
}
type ResourceLocationValues string
// Enum values for ResourceLocationValues
const (
ResourceLocationValuesCloud ResourceLocationValues = "CLOUD"
ResourceLocationValuesOutpost ResourceLocationValues = "OUTPOST"
)
// Values returns all known values for ResourceLocationValues. 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 (ResourceLocationValues) Values() []ResourceLocationValues {
return []ResourceLocationValues{
"CLOUD",
"OUTPOST",
}
}
type ResourceTypeValues string
// Enum values for ResourceTypeValues
const (
ResourceTypeValuesVolume ResourceTypeValues = "VOLUME"
ResourceTypeValuesInstance ResourceTypeValues = "INSTANCE"
)
// Values returns all known values for ResourceTypeValues. 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 (ResourceTypeValues) Values() []ResourceTypeValues {
return []ResourceTypeValues{
"VOLUME",
"INSTANCE",
}
}
type RetentionIntervalUnitValues string
// Enum values for RetentionIntervalUnitValues
const (
RetentionIntervalUnitValuesDays RetentionIntervalUnitValues = "DAYS"
RetentionIntervalUnitValuesWeeks RetentionIntervalUnitValues = "WEEKS"
RetentionIntervalUnitValuesMonths RetentionIntervalUnitValues = "MONTHS"
RetentionIntervalUnitValuesYears RetentionIntervalUnitValues = "YEARS"
)
// Values returns all known values for RetentionIntervalUnitValues. 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 (RetentionIntervalUnitValues) Values() []RetentionIntervalUnitValues {
return []RetentionIntervalUnitValues{
"DAYS",
"WEEKS",
"MONTHS",
"YEARS",
}
}
type SettablePolicyStateValues string
// Enum values for SettablePolicyStateValues
const (
SettablePolicyStateValuesEnabled SettablePolicyStateValues = "ENABLED"
SettablePolicyStateValuesDisabled SettablePolicyStateValues = "DISABLED"
)
// Values returns all known values for SettablePolicyStateValues. 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 (SettablePolicyStateValues) Values() []SettablePolicyStateValues {
return []SettablePolicyStateValues{
"ENABLED",
"DISABLED",
}
}
type StageValues string
// Enum values for StageValues
const (
StageValuesPre StageValues = "PRE"
StageValuesPost StageValues = "POST"
)
// Values returns all known values for StageValues. 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 (StageValues) Values() []StageValues {
return []StageValues{
"PRE",
"POST",
}
}
|