1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type ClusterState string
6
7// Enum values for ClusterState
8const (
9	ClusterStateAwaitingQuorum ClusterState = "AwaitingQuorum"
10	ClusterStatePending        ClusterState = "Pending"
11	ClusterStateInUse          ClusterState = "InUse"
12	ClusterStateComplete       ClusterState = "Complete"
13	ClusterStateCancelled      ClusterState = "Cancelled"
14)
15
16// Values returns all known values for ClusterState. Note that this can be expanded
17// in the future, and so it is only as up to date as the client. The ordering of
18// this slice is not guaranteed to be stable across updates.
19func (ClusterState) Values() []ClusterState {
20	return []ClusterState{
21		"AwaitingQuorum",
22		"Pending",
23		"InUse",
24		"Complete",
25		"Cancelled",
26	}
27}
28
29type JobState string
30
31// Enum values for JobState
32const (
33	JobStateNew                    JobState = "New"
34	JobStatePreparingAppliance     JobState = "PreparingAppliance"
35	JobStatePreparingShipment      JobState = "PreparingShipment"
36	JobStateInTransitToCustomer    JobState = "InTransitToCustomer"
37	JobStateWithCustomer           JobState = "WithCustomer"
38	JobStateInTransitToAws         JobState = "InTransitToAWS"
39	JobStateWithAwsSortingFacility JobState = "WithAWSSortingFacility"
40	JobStateWithAws                JobState = "WithAWS"
41	JobStateInProgress             JobState = "InProgress"
42	JobStateComplete               JobState = "Complete"
43	JobStateCancelled              JobState = "Cancelled"
44	JobStateListing                JobState = "Listing"
45	JobStatePending                JobState = "Pending"
46)
47
48// Values returns all known values for JobState. Note that this can be expanded in
49// the future, and so it is only as up to date as the client. The ordering of this
50// slice is not guaranteed to be stable across updates.
51func (JobState) Values() []JobState {
52	return []JobState{
53		"New",
54		"PreparingAppliance",
55		"PreparingShipment",
56		"InTransitToCustomer",
57		"WithCustomer",
58		"InTransitToAWS",
59		"WithAWSSortingFacility",
60		"WithAWS",
61		"InProgress",
62		"Complete",
63		"Cancelled",
64		"Listing",
65		"Pending",
66	}
67}
68
69type JobType string
70
71// Enum values for JobType
72const (
73	JobTypeImport   JobType = "IMPORT"
74	JobTypeExport   JobType = "EXPORT"
75	JobTypeLocalUse JobType = "LOCAL_USE"
76)
77
78// Values returns all known values for JobType. Note that this can be expanded in
79// the future, and so it is only as up to date as the client. The ordering of this
80// slice is not guaranteed to be stable across updates.
81func (JobType) Values() []JobType {
82	return []JobType{
83		"IMPORT",
84		"EXPORT",
85		"LOCAL_USE",
86	}
87}
88
89type ShipmentState string
90
91// Enum values for ShipmentState
92const (
93	ShipmentStateReceived ShipmentState = "RECEIVED"
94	ShipmentStateReturned ShipmentState = "RETURNED"
95)
96
97// Values returns all known values for ShipmentState. Note that this can be
98// expanded in the future, and so it is only as up to date as the client. The
99// ordering of this slice is not guaranteed to be stable across updates.
100func (ShipmentState) Values() []ShipmentState {
101	return []ShipmentState{
102		"RECEIVED",
103		"RETURNED",
104	}
105}
106
107type ShippingLabelStatus string
108
109// Enum values for ShippingLabelStatus
110const (
111	ShippingLabelStatusInProgress ShippingLabelStatus = "InProgress"
112	ShippingLabelStatusTimedOut   ShippingLabelStatus = "TimedOut"
113	ShippingLabelStatusSucceeded  ShippingLabelStatus = "Succeeded"
114	ShippingLabelStatusFailed     ShippingLabelStatus = "Failed"
115)
116
117// Values returns all known values for ShippingLabelStatus. Note that this can be
118// expanded in the future, and so it is only as up to date as the client. The
119// ordering of this slice is not guaranteed to be stable across updates.
120func (ShippingLabelStatus) Values() []ShippingLabelStatus {
121	return []ShippingLabelStatus{
122		"InProgress",
123		"TimedOut",
124		"Succeeded",
125		"Failed",
126	}
127}
128
129type ShippingOption string
130
131// Enum values for ShippingOption
132const (
133	ShippingOptionSecondDay ShippingOption = "SECOND_DAY"
134	ShippingOptionNextDay   ShippingOption = "NEXT_DAY"
135	ShippingOptionExpress   ShippingOption = "EXPRESS"
136	ShippingOptionStandard  ShippingOption = "STANDARD"
137)
138
139// Values returns all known values for ShippingOption. Note that this can be
140// expanded in the future, and so it is only as up to date as the client. The
141// ordering of this slice is not guaranteed to be stable across updates.
142func (ShippingOption) Values() []ShippingOption {
143	return []ShippingOption{
144		"SECOND_DAY",
145		"NEXT_DAY",
146		"EXPRESS",
147		"STANDARD",
148	}
149}
150
151type SnowballCapacity string
152
153// Enum values for SnowballCapacity
154const (
155	SnowballCapacityT50          SnowballCapacity = "T50"
156	SnowballCapacityT80          SnowballCapacity = "T80"
157	SnowballCapacityT100         SnowballCapacity = "T100"
158	SnowballCapacityT42          SnowballCapacity = "T42"
159	SnowballCapacityT98          SnowballCapacity = "T98"
160	SnowballCapacityT8           SnowballCapacity = "T8"
161	SnowballCapacityNoPreference SnowballCapacity = "NoPreference"
162)
163
164// Values returns all known values for SnowballCapacity. Note that this can be
165// expanded in the future, and so it is only as up to date as the client. The
166// ordering of this slice is not guaranteed to be stable across updates.
167func (SnowballCapacity) Values() []SnowballCapacity {
168	return []SnowballCapacity{
169		"T50",
170		"T80",
171		"T100",
172		"T42",
173		"T98",
174		"T8",
175		"NoPreference",
176	}
177}
178
179type SnowballType string
180
181// Enum values for SnowballType
182const (
183	SnowballTypeStandard SnowballType = "STANDARD"
184	SnowballTypeEdge     SnowballType = "EDGE"
185	SnowballTypeEdgeC    SnowballType = "EDGE_C"
186	SnowballTypeEdgeCg   SnowballType = "EDGE_CG"
187	SnowballTypeEdgeS    SnowballType = "EDGE_S"
188	SnowballTypeSnc1Hdd  SnowballType = "SNC1_HDD"
189)
190
191// Values returns all known values for SnowballType. 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 (SnowballType) Values() []SnowballType {
195	return []SnowballType{
196		"STANDARD",
197		"EDGE",
198		"EDGE_C",
199		"EDGE_CG",
200		"EDGE_S",
201		"SNC1_HDD",
202	}
203}
204