1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type DomainStatus string
6
7// Enum values for DomainStatus
8const (
9	DomainStatusPendingVerification   DomainStatus = "PENDING_VERIFICATION"
10	DomainStatusInProgress            DomainStatus = "IN_PROGRESS"
11	DomainStatusAvailable             DomainStatus = "AVAILABLE"
12	DomainStatusPendingDeployment     DomainStatus = "PENDING_DEPLOYMENT"
13	DomainStatusFailed                DomainStatus = "FAILED"
14	DomainStatusCreating              DomainStatus = "CREATING"
15	DomainStatusRequestingCertificate DomainStatus = "REQUESTING_CERTIFICATE"
16	DomainStatusUpdating              DomainStatus = "UPDATING"
17)
18
19// Values returns all known values for DomainStatus. Note that this can be expanded
20// in the future, and so it is only as up to date as the client. The ordering of
21// this slice is not guaranteed to be stable across updates.
22func (DomainStatus) Values() []DomainStatus {
23	return []DomainStatus{
24		"PENDING_VERIFICATION",
25		"IN_PROGRESS",
26		"AVAILABLE",
27		"PENDING_DEPLOYMENT",
28		"FAILED",
29		"CREATING",
30		"REQUESTING_CERTIFICATE",
31		"UPDATING",
32	}
33}
34
35type JobStatus string
36
37// Enum values for JobStatus
38const (
39	JobStatusPending      JobStatus = "PENDING"
40	JobStatusProvisioning JobStatus = "PROVISIONING"
41	JobStatusRunning      JobStatus = "RUNNING"
42	JobStatusFailed       JobStatus = "FAILED"
43	JobStatusSucceed      JobStatus = "SUCCEED"
44	JobStatusCancelling   JobStatus = "CANCELLING"
45	JobStatusCancelled    JobStatus = "CANCELLED"
46)
47
48// Values returns all known values for JobStatus. 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 (JobStatus) Values() []JobStatus {
52	return []JobStatus{
53		"PENDING",
54		"PROVISIONING",
55		"RUNNING",
56		"FAILED",
57		"SUCCEED",
58		"CANCELLING",
59		"CANCELLED",
60	}
61}
62
63type JobType string
64
65// Enum values for JobType
66const (
67	JobTypeRelease JobType = "RELEASE"
68	JobTypeRetry   JobType = "RETRY"
69	JobTypeManual  JobType = "MANUAL"
70	JobTypeWebHook JobType = "WEB_HOOK"
71)
72
73// Values returns all known values for JobType. Note that this can be expanded in
74// the future, and so it is only as up to date as the client. The ordering of this
75// slice is not guaranteed to be stable across updates.
76func (JobType) Values() []JobType {
77	return []JobType{
78		"RELEASE",
79		"RETRY",
80		"MANUAL",
81		"WEB_HOOK",
82	}
83}
84
85type Platform string
86
87// Enum values for Platform
88const (
89	PlatformWeb Platform = "WEB"
90)
91
92// Values returns all known values for Platform. Note that this can be expanded in
93// the future, and so it is only as up to date as the client. The ordering of this
94// slice is not guaranteed to be stable across updates.
95func (Platform) Values() []Platform {
96	return []Platform{
97		"WEB",
98	}
99}
100
101type Stage string
102
103// Enum values for Stage
104const (
105	StageProduction   Stage = "PRODUCTION"
106	StageBeta         Stage = "BETA"
107	StageDevelopment  Stage = "DEVELOPMENT"
108	StageExperimental Stage = "EXPERIMENTAL"
109	StagePullRequest  Stage = "PULL_REQUEST"
110)
111
112// Values returns all known values for Stage. Note that this can be expanded in the
113// future, and so it is only as up to date as the client. The ordering of this
114// slice is not guaranteed to be stable across updates.
115func (Stage) Values() []Stage {
116	return []Stage{
117		"PRODUCTION",
118		"BETA",
119		"DEVELOPMENT",
120		"EXPERIMENTAL",
121		"PULL_REQUEST",
122	}
123}
124