File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.24.1-2~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 554,032 kB
  • sloc: java: 15,941; makefile: 419; sh: 175
file content (229 lines) | stat: -rw-r--r-- 6,542 bytes parent folder | download
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type Brevity string

// Enum values for Brevity
const (
	BrevityOn Brevity = "ON"
)

// Values returns all known values for Brevity. 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 (Brevity) Values() []Brevity {
	return []Brevity{
		"ON",
	}
}

type Directionality string

// Enum values for Directionality
const (
	DirectionalityUni   Directionality = "UNI"
	DirectionalityMulti Directionality = "MULTI"
)

// Values returns all known values for Directionality. 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 (Directionality) Values() []Directionality {
	return []Directionality{
		"UNI",
		"MULTI",
	}
}

type DisplayLanguageCode string

// Enum values for DisplayLanguageCode
const (
	DisplayLanguageCodeDe   DisplayLanguageCode = "de"
	DisplayLanguageCodeEn   DisplayLanguageCode = "en"
	DisplayLanguageCodeEs   DisplayLanguageCode = "es"
	DisplayLanguageCodeFr   DisplayLanguageCode = "fr"
	DisplayLanguageCodeIt   DisplayLanguageCode = "it"
	DisplayLanguageCodeJa   DisplayLanguageCode = "ja"
	DisplayLanguageCodeKo   DisplayLanguageCode = "ko"
	DisplayLanguageCodePt   DisplayLanguageCode = "pt"
	DisplayLanguageCodeZh   DisplayLanguageCode = "zh"
	DisplayLanguageCodeZhTw DisplayLanguageCode = "zh-TW"
)

// Values returns all known values for DisplayLanguageCode. 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 (DisplayLanguageCode) Values() []DisplayLanguageCode {
	return []DisplayLanguageCode{
		"de",
		"en",
		"es",
		"fr",
		"it",
		"ja",
		"ko",
		"pt",
		"zh",
		"zh-TW",
	}
}

type EncryptionKeyType string

// Enum values for EncryptionKeyType
const (
	EncryptionKeyTypeKms EncryptionKeyType = "KMS"
)

// Values returns all known values for EncryptionKeyType. 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 (EncryptionKeyType) Values() []EncryptionKeyType {
	return []EncryptionKeyType{
		"KMS",
	}
}

type Formality string

// Enum values for Formality
const (
	FormalityFormal   Formality = "FORMAL"
	FormalityInformal Formality = "INFORMAL"
)

// Values returns all known values for Formality. 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 (Formality) Values() []Formality {
	return []Formality{
		"FORMAL",
		"INFORMAL",
	}
}

type JobStatus string

// Enum values for JobStatus
const (
	JobStatusSubmitted          JobStatus = "SUBMITTED"
	JobStatusInProgress         JobStatus = "IN_PROGRESS"
	JobStatusCompleted          JobStatus = "COMPLETED"
	JobStatusCompletedWithError JobStatus = "COMPLETED_WITH_ERROR"
	JobStatusFailed             JobStatus = "FAILED"
	JobStatusStopRequested      JobStatus = "STOP_REQUESTED"
	JobStatusStopped            JobStatus = "STOPPED"
)

// Values returns all known values for JobStatus. 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 (JobStatus) Values() []JobStatus {
	return []JobStatus{
		"SUBMITTED",
		"IN_PROGRESS",
		"COMPLETED",
		"COMPLETED_WITH_ERROR",
		"FAILED",
		"STOP_REQUESTED",
		"STOPPED",
	}
}

type MergeStrategy string

// Enum values for MergeStrategy
const (
	MergeStrategyOverwrite MergeStrategy = "OVERWRITE"
)

// Values returns all known values for MergeStrategy. 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 (MergeStrategy) Values() []MergeStrategy {
	return []MergeStrategy{
		"OVERWRITE",
	}
}

type ParallelDataFormat string

// Enum values for ParallelDataFormat
const (
	ParallelDataFormatTsv ParallelDataFormat = "TSV"
	ParallelDataFormatCsv ParallelDataFormat = "CSV"
	ParallelDataFormatTmx ParallelDataFormat = "TMX"
)

// Values returns all known values for ParallelDataFormat. 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 (ParallelDataFormat) Values() []ParallelDataFormat {
	return []ParallelDataFormat{
		"TSV",
		"CSV",
		"TMX",
	}
}

type ParallelDataStatus string

// Enum values for ParallelDataStatus
const (
	ParallelDataStatusCreating ParallelDataStatus = "CREATING"
	ParallelDataStatusUpdating ParallelDataStatus = "UPDATING"
	ParallelDataStatusActive   ParallelDataStatus = "ACTIVE"
	ParallelDataStatusDeleting ParallelDataStatus = "DELETING"
	ParallelDataStatusFailed   ParallelDataStatus = "FAILED"
)

// Values returns all known values for ParallelDataStatus. 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 (ParallelDataStatus) Values() []ParallelDataStatus {
	return []ParallelDataStatus{
		"CREATING",
		"UPDATING",
		"ACTIVE",
		"DELETING",
		"FAILED",
	}
}

type Profanity string

// Enum values for Profanity
const (
	ProfanityMask Profanity = "MASK"
)

// Values returns all known values for Profanity. 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 (Profanity) Values() []Profanity {
	return []Profanity{
		"MASK",
	}
}

type TerminologyDataFormat string

// Enum values for TerminologyDataFormat
const (
	TerminologyDataFormatCsv TerminologyDataFormat = "CSV"
	TerminologyDataFormatTmx TerminologyDataFormat = "TMX"
	TerminologyDataFormatTsv TerminologyDataFormat = "TSV"
)

// Values returns all known values for TerminologyDataFormat. 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 (TerminologyDataFormat) Values() []TerminologyDataFormat {
	return []TerminologyDataFormat{
		"CSV",
		"TMX",
		"TSV",
	}
}