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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ActionAfterCompletion string
// Enum values for ActionAfterCompletion
const (
ActionAfterCompletionNone ActionAfterCompletion = "NONE"
ActionAfterCompletionDelete ActionAfterCompletion = "DELETE"
)
// Values returns all known values for ActionAfterCompletion. 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 (ActionAfterCompletion) Values() []ActionAfterCompletion {
return []ActionAfterCompletion{
"NONE",
"DELETE",
}
}
type AssignPublicIp string
// Enum values for AssignPublicIp
const (
AssignPublicIpEnabled AssignPublicIp = "ENABLED"
AssignPublicIpDisabled AssignPublicIp = "DISABLED"
)
// Values returns all known values for AssignPublicIp. 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 (AssignPublicIp) Values() []AssignPublicIp {
return []AssignPublicIp{
"ENABLED",
"DISABLED",
}
}
type FlexibleTimeWindowMode string
// Enum values for FlexibleTimeWindowMode
const (
FlexibleTimeWindowModeOff FlexibleTimeWindowMode = "OFF"
FlexibleTimeWindowModeFlexible FlexibleTimeWindowMode = "FLEXIBLE"
)
// Values returns all known values for FlexibleTimeWindowMode. 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 (FlexibleTimeWindowMode) Values() []FlexibleTimeWindowMode {
return []FlexibleTimeWindowMode{
"OFF",
"FLEXIBLE",
}
}
type LaunchType string
// Enum values for LaunchType
const (
LaunchTypeEc2 LaunchType = "EC2"
LaunchTypeFargate LaunchType = "FARGATE"
LaunchTypeExternal LaunchType = "EXTERNAL"
)
// Values returns all known values for LaunchType. 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 (LaunchType) Values() []LaunchType {
return []LaunchType{
"EC2",
"FARGATE",
"EXTERNAL",
}
}
type PlacementConstraintType string
// Enum values for PlacementConstraintType
const (
PlacementConstraintTypeDistinctInstance PlacementConstraintType = "distinctInstance"
PlacementConstraintTypeMemberOf PlacementConstraintType = "memberOf"
)
// Values returns all known values for PlacementConstraintType. 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 (PlacementConstraintType) Values() []PlacementConstraintType {
return []PlacementConstraintType{
"distinctInstance",
"memberOf",
}
}
type PlacementStrategyType string
// Enum values for PlacementStrategyType
const (
PlacementStrategyTypeRandom PlacementStrategyType = "random"
PlacementStrategyTypeSpread PlacementStrategyType = "spread"
PlacementStrategyTypeBinpack PlacementStrategyType = "binpack"
)
// Values returns all known values for PlacementStrategyType. 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 (PlacementStrategyType) Values() []PlacementStrategyType {
return []PlacementStrategyType{
"random",
"spread",
"binpack",
}
}
type PropagateTags string
// Enum values for PropagateTags
const (
PropagateTagsTaskDefinition PropagateTags = "TASK_DEFINITION"
)
// Values returns all known values for PropagateTags. 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 (PropagateTags) Values() []PropagateTags {
return []PropagateTags{
"TASK_DEFINITION",
}
}
type ScheduleGroupState string
// Enum values for ScheduleGroupState
const (
ScheduleGroupStateActive ScheduleGroupState = "ACTIVE"
ScheduleGroupStateDeleting ScheduleGroupState = "DELETING"
)
// Values returns all known values for ScheduleGroupState. 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 (ScheduleGroupState) Values() []ScheduleGroupState {
return []ScheduleGroupState{
"ACTIVE",
"DELETING",
}
}
type ScheduleState string
// Enum values for ScheduleState
const (
ScheduleStateEnabled ScheduleState = "ENABLED"
ScheduleStateDisabled ScheduleState = "DISABLED"
)
// Values returns all known values for ScheduleState. 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 (ScheduleState) Values() []ScheduleState {
return []ScheduleState{
"ENABLED",
"DISABLED",
}
}
|