1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type ChangeStatus string
6
7// Enum values for ChangeStatus
8const (
9	ChangeStatusPreparing ChangeStatus = "PREPARING"
10	ChangeStatusApplying  ChangeStatus = "APPLYING"
11	ChangeStatusSucceeded ChangeStatus = "SUCCEEDED"
12	ChangeStatusCancelled ChangeStatus = "CANCELLED"
13	ChangeStatusFailed    ChangeStatus = "FAILED"
14)
15
16// Values returns all known values for ChangeStatus. 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 (ChangeStatus) Values() []ChangeStatus {
20	return []ChangeStatus{
21		"PREPARING",
22		"APPLYING",
23		"SUCCEEDED",
24		"CANCELLED",
25		"FAILED",
26	}
27}
28
29type FailureCode string
30
31// Enum values for FailureCode
32const (
33	FailureCodeClientError FailureCode = "CLIENT_ERROR"
34	FailureCodeServerFault FailureCode = "SERVER_FAULT"
35)
36
37// Values returns all known values for FailureCode. Note that this can be expanded
38// in the future, and so it is only as up to date as the client. The ordering of
39// this slice is not guaranteed to be stable across updates.
40func (FailureCode) Values() []FailureCode {
41	return []FailureCode{
42		"CLIENT_ERROR",
43		"SERVER_FAULT",
44	}
45}
46
47type SortOrder string
48
49// Enum values for SortOrder
50const (
51	SortOrderAscending  SortOrder = "ASCENDING"
52	SortOrderDescending SortOrder = "DESCENDING"
53)
54
55// Values returns all known values for SortOrder. Note that this can be expanded in
56// the future, and so it is only as up to date as the client. The ordering of this
57// slice is not guaranteed to be stable across updates.
58func (SortOrder) Values() []SortOrder {
59	return []SortOrder{
60		"ASCENDING",
61		"DESCENDING",
62	}
63}
64