1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type ApiDestinationHttpMethod string
6
7// Enum values for ApiDestinationHttpMethod
8const (
9	ApiDestinationHttpMethodPost    ApiDestinationHttpMethod = "POST"
10	ApiDestinationHttpMethodGet     ApiDestinationHttpMethod = "GET"
11	ApiDestinationHttpMethodHead    ApiDestinationHttpMethod = "HEAD"
12	ApiDestinationHttpMethodOptions ApiDestinationHttpMethod = "OPTIONS"
13	ApiDestinationHttpMethodPut     ApiDestinationHttpMethod = "PUT"
14	ApiDestinationHttpMethodPatch   ApiDestinationHttpMethod = "PATCH"
15	ApiDestinationHttpMethodDelete  ApiDestinationHttpMethod = "DELETE"
16)
17
18// Values returns all known values for ApiDestinationHttpMethod. Note that this can
19// be expanded in the future, and so it is only as up to date as the client. The
20// ordering of this slice is not guaranteed to be stable across updates.
21func (ApiDestinationHttpMethod) Values() []ApiDestinationHttpMethod {
22	return []ApiDestinationHttpMethod{
23		"POST",
24		"GET",
25		"HEAD",
26		"OPTIONS",
27		"PUT",
28		"PATCH",
29		"DELETE",
30	}
31}
32
33type ApiDestinationState string
34
35// Enum values for ApiDestinationState
36const (
37	ApiDestinationStateActive   ApiDestinationState = "ACTIVE"
38	ApiDestinationStateInactive ApiDestinationState = "INACTIVE"
39)
40
41// Values returns all known values for ApiDestinationState. Note that this can be
42// expanded in the future, and so it is only as up to date as the client. The
43// ordering of this slice is not guaranteed to be stable across updates.
44func (ApiDestinationState) Values() []ApiDestinationState {
45	return []ApiDestinationState{
46		"ACTIVE",
47		"INACTIVE",
48	}
49}
50
51type ArchiveState string
52
53// Enum values for ArchiveState
54const (
55	ArchiveStateEnabled      ArchiveState = "ENABLED"
56	ArchiveStateDisabled     ArchiveState = "DISABLED"
57	ArchiveStateCreating     ArchiveState = "CREATING"
58	ArchiveStateUpdating     ArchiveState = "UPDATING"
59	ArchiveStateCreateFailed ArchiveState = "CREATE_FAILED"
60	ArchiveStateUpdateFailed ArchiveState = "UPDATE_FAILED"
61)
62
63// Values returns all known values for ArchiveState. Note that this can be expanded
64// in the future, and so it is only as up to date as the client. The ordering of
65// this slice is not guaranteed to be stable across updates.
66func (ArchiveState) Values() []ArchiveState {
67	return []ArchiveState{
68		"ENABLED",
69		"DISABLED",
70		"CREATING",
71		"UPDATING",
72		"CREATE_FAILED",
73		"UPDATE_FAILED",
74	}
75}
76
77type AssignPublicIp string
78
79// Enum values for AssignPublicIp
80const (
81	AssignPublicIpEnabled  AssignPublicIp = "ENABLED"
82	AssignPublicIpDisabled AssignPublicIp = "DISABLED"
83)
84
85// Values returns all known values for AssignPublicIp. Note that this can be
86// expanded in the future, and so it is only as up to date as the client. The
87// ordering of this slice is not guaranteed to be stable across updates.
88func (AssignPublicIp) Values() []AssignPublicIp {
89	return []AssignPublicIp{
90		"ENABLED",
91		"DISABLED",
92	}
93}
94
95type ConnectionAuthorizationType string
96
97// Enum values for ConnectionAuthorizationType
98const (
99	ConnectionAuthorizationTypeBasic                  ConnectionAuthorizationType = "BASIC"
100	ConnectionAuthorizationTypeOauthClientCredentials ConnectionAuthorizationType = "OAUTH_CLIENT_CREDENTIALS"
101	ConnectionAuthorizationTypeApiKey                 ConnectionAuthorizationType = "API_KEY"
102)
103
104// Values returns all known values for ConnectionAuthorizationType. Note that this
105// can be expanded in the future, and so it is only as up to date as the client.
106// The ordering of this slice is not guaranteed to be stable across updates.
107func (ConnectionAuthorizationType) Values() []ConnectionAuthorizationType {
108	return []ConnectionAuthorizationType{
109		"BASIC",
110		"OAUTH_CLIENT_CREDENTIALS",
111		"API_KEY",
112	}
113}
114
115type ConnectionOAuthHttpMethod string
116
117// Enum values for ConnectionOAuthHttpMethod
118const (
119	ConnectionOAuthHttpMethodGet  ConnectionOAuthHttpMethod = "GET"
120	ConnectionOAuthHttpMethodPost ConnectionOAuthHttpMethod = "POST"
121	ConnectionOAuthHttpMethodPut  ConnectionOAuthHttpMethod = "PUT"
122)
123
124// Values returns all known values for ConnectionOAuthHttpMethod. Note that this
125// can be expanded in the future, and so it is only as up to date as the client.
126// The ordering of this slice is not guaranteed to be stable across updates.
127func (ConnectionOAuthHttpMethod) Values() []ConnectionOAuthHttpMethod {
128	return []ConnectionOAuthHttpMethod{
129		"GET",
130		"POST",
131		"PUT",
132	}
133}
134
135type ConnectionState string
136
137// Enum values for ConnectionState
138const (
139	ConnectionStateCreating      ConnectionState = "CREATING"
140	ConnectionStateUpdating      ConnectionState = "UPDATING"
141	ConnectionStateDeleting      ConnectionState = "DELETING"
142	ConnectionStateAuthorized    ConnectionState = "AUTHORIZED"
143	ConnectionStateDeauthorized  ConnectionState = "DEAUTHORIZED"
144	ConnectionStateAuthorizing   ConnectionState = "AUTHORIZING"
145	ConnectionStateDeauthorizing ConnectionState = "DEAUTHORIZING"
146)
147
148// Values returns all known values for ConnectionState. Note that this can be
149// expanded in the future, and so it is only as up to date as the client. The
150// ordering of this slice is not guaranteed to be stable across updates.
151func (ConnectionState) Values() []ConnectionState {
152	return []ConnectionState{
153		"CREATING",
154		"UPDATING",
155		"DELETING",
156		"AUTHORIZED",
157		"DEAUTHORIZED",
158		"AUTHORIZING",
159		"DEAUTHORIZING",
160	}
161}
162
163type EventSourceState string
164
165// Enum values for EventSourceState
166const (
167	EventSourceStatePending EventSourceState = "PENDING"
168	EventSourceStateActive  EventSourceState = "ACTIVE"
169	EventSourceStateDeleted EventSourceState = "DELETED"
170)
171
172// Values returns all known values for EventSourceState. Note that this can be
173// expanded in the future, and so it is only as up to date as the client. The
174// ordering of this slice is not guaranteed to be stable across updates.
175func (EventSourceState) Values() []EventSourceState {
176	return []EventSourceState{
177		"PENDING",
178		"ACTIVE",
179		"DELETED",
180	}
181}
182
183type LaunchType string
184
185// Enum values for LaunchType
186const (
187	LaunchTypeEc2     LaunchType = "EC2"
188	LaunchTypeFargate LaunchType = "FARGATE"
189)
190
191// Values returns all known values for LaunchType. Note that this can be expanded
192// in the future, and so it is only as up to date as the client. The ordering of
193// this slice is not guaranteed to be stable across updates.
194func (LaunchType) Values() []LaunchType {
195	return []LaunchType{
196		"EC2",
197		"FARGATE",
198	}
199}
200
201type ReplayState string
202
203// Enum values for ReplayState
204const (
205	ReplayStateStarting   ReplayState = "STARTING"
206	ReplayStateRunning    ReplayState = "RUNNING"
207	ReplayStateCancelling ReplayState = "CANCELLING"
208	ReplayStateCompleted  ReplayState = "COMPLETED"
209	ReplayStateCancelled  ReplayState = "CANCELLED"
210	ReplayStateFailed     ReplayState = "FAILED"
211)
212
213// Values returns all known values for ReplayState. Note that this can be expanded
214// in the future, and so it is only as up to date as the client. The ordering of
215// this slice is not guaranteed to be stable across updates.
216func (ReplayState) Values() []ReplayState {
217	return []ReplayState{
218		"STARTING",
219		"RUNNING",
220		"CANCELLING",
221		"COMPLETED",
222		"CANCELLED",
223		"FAILED",
224	}
225}
226
227type RuleState string
228
229// Enum values for RuleState
230const (
231	RuleStateEnabled  RuleState = "ENABLED"
232	RuleStateDisabled RuleState = "DISABLED"
233)
234
235// Values returns all known values for RuleState. Note that this can be expanded in
236// the future, and so it is only as up to date as the client. The ordering of this
237// slice is not guaranteed to be stable across updates.
238func (RuleState) Values() []RuleState {
239	return []RuleState{
240		"ENABLED",
241		"DISABLED",
242	}
243}
244