File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.17.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 384,244 kB
  • sloc: java: 13,538; makefile: 400; sh: 137
file content (303 lines) | stat: -rw-r--r-- 10,713 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type MediaCapabilities string

// Enum values for MediaCapabilities
const (
	MediaCapabilitiesSendReceive MediaCapabilities = "SendReceive"
	MediaCapabilitiesSend        MediaCapabilities = "Send"
	MediaCapabilitiesReceive     MediaCapabilities = "Receive"
	MediaCapabilitiesNone        MediaCapabilities = "None"
)

// Values returns all known values for MediaCapabilities. 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 (MediaCapabilities) Values() []MediaCapabilities {
	return []MediaCapabilities{
		"SendReceive",
		"Send",
		"Receive",
		"None",
	}
}

type MeetingFeatureStatus string

// Enum values for MeetingFeatureStatus
const (
	MeetingFeatureStatusAvailable   MeetingFeatureStatus = "AVAILABLE"
	MeetingFeatureStatusUnavailable MeetingFeatureStatus = "UNAVAILABLE"
)

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

type TranscribeContentIdentificationType string

// Enum values for TranscribeContentIdentificationType
const (
	TranscribeContentIdentificationTypePii TranscribeContentIdentificationType = "PII"
)

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

type TranscribeContentRedactionType string

// Enum values for TranscribeContentRedactionType
const (
	TranscribeContentRedactionTypePii TranscribeContentRedactionType = "PII"
)

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

type TranscribeLanguageCode string

// Enum values for TranscribeLanguageCode
const (
	TranscribeLanguageCodeEnUs TranscribeLanguageCode = "en-US"
	TranscribeLanguageCodeEnGb TranscribeLanguageCode = "en-GB"
	TranscribeLanguageCodeEsUs TranscribeLanguageCode = "es-US"
	TranscribeLanguageCodeFrCa TranscribeLanguageCode = "fr-CA"
	TranscribeLanguageCodeFrFr TranscribeLanguageCode = "fr-FR"
	TranscribeLanguageCodeEnAu TranscribeLanguageCode = "en-AU"
	TranscribeLanguageCodeItIt TranscribeLanguageCode = "it-IT"
	TranscribeLanguageCodeDeDe TranscribeLanguageCode = "de-DE"
	TranscribeLanguageCodePtBr TranscribeLanguageCode = "pt-BR"
	TranscribeLanguageCodeJaJp TranscribeLanguageCode = "ja-JP"
	TranscribeLanguageCodeKoKr TranscribeLanguageCode = "ko-KR"
	TranscribeLanguageCodeZhCn TranscribeLanguageCode = "zh-CN"
)

// Values returns all known values for TranscribeLanguageCode. 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 (TranscribeLanguageCode) Values() []TranscribeLanguageCode {
	return []TranscribeLanguageCode{
		"en-US",
		"en-GB",
		"es-US",
		"fr-CA",
		"fr-FR",
		"en-AU",
		"it-IT",
		"de-DE",
		"pt-BR",
		"ja-JP",
		"ko-KR",
		"zh-CN",
	}
}

type TranscribeMedicalContentIdentificationType string

// Enum values for TranscribeMedicalContentIdentificationType
const (
	TranscribeMedicalContentIdentificationTypePhi TranscribeMedicalContentIdentificationType = "PHI"
)

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

type TranscribeMedicalLanguageCode string

// Enum values for TranscribeMedicalLanguageCode
const (
	TranscribeMedicalLanguageCodeEnUs TranscribeMedicalLanguageCode = "en-US"
)

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

type TranscribeMedicalRegion string

// Enum values for TranscribeMedicalRegion
const (
	TranscribeMedicalRegionUsEast1      TranscribeMedicalRegion = "us-east-1"
	TranscribeMedicalRegionUsEast2      TranscribeMedicalRegion = "us-east-2"
	TranscribeMedicalRegionUsWest2      TranscribeMedicalRegion = "us-west-2"
	TranscribeMedicalRegionApSoutheast2 TranscribeMedicalRegion = "ap-southeast-2"
	TranscribeMedicalRegionCaCentral1   TranscribeMedicalRegion = "ca-central-1"
	TranscribeMedicalRegionEuWest1      TranscribeMedicalRegion = "eu-west-1"
	TranscribeMedicalRegionAuto         TranscribeMedicalRegion = "auto"
)

// Values returns all known values for TranscribeMedicalRegion. 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 (TranscribeMedicalRegion) Values() []TranscribeMedicalRegion {
	return []TranscribeMedicalRegion{
		"us-east-1",
		"us-east-2",
		"us-west-2",
		"ap-southeast-2",
		"ca-central-1",
		"eu-west-1",
		"auto",
	}
}

type TranscribeMedicalSpecialty string

// Enum values for TranscribeMedicalSpecialty
const (
	TranscribeMedicalSpecialtyPrimarycare TranscribeMedicalSpecialty = "PRIMARYCARE"
	TranscribeMedicalSpecialtyCardiology  TranscribeMedicalSpecialty = "CARDIOLOGY"
	TranscribeMedicalSpecialtyNeurology   TranscribeMedicalSpecialty = "NEUROLOGY"
	TranscribeMedicalSpecialtyOncology    TranscribeMedicalSpecialty = "ONCOLOGY"
	TranscribeMedicalSpecialtyRadiology   TranscribeMedicalSpecialty = "RADIOLOGY"
	TranscribeMedicalSpecialtyUrology     TranscribeMedicalSpecialty = "UROLOGY"
)

// Values returns all known values for TranscribeMedicalSpecialty. 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 (TranscribeMedicalSpecialty) Values() []TranscribeMedicalSpecialty {
	return []TranscribeMedicalSpecialty{
		"PRIMARYCARE",
		"CARDIOLOGY",
		"NEUROLOGY",
		"ONCOLOGY",
		"RADIOLOGY",
		"UROLOGY",
	}
}

type TranscribeMedicalType string

// Enum values for TranscribeMedicalType
const (
	TranscribeMedicalTypeConversation TranscribeMedicalType = "CONVERSATION"
	TranscribeMedicalTypeDictation    TranscribeMedicalType = "DICTATION"
)

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

type TranscribePartialResultsStability string

// Enum values for TranscribePartialResultsStability
const (
	TranscribePartialResultsStabilityLow    TranscribePartialResultsStability = "low"
	TranscribePartialResultsStabilityMedium TranscribePartialResultsStability = "medium"
	TranscribePartialResultsStabilityHigh   TranscribePartialResultsStability = "high"
)

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

type TranscribeRegion string

// Enum values for TranscribeRegion
const (
	TranscribeRegionUsEast2      TranscribeRegion = "us-east-2"
	TranscribeRegionUsEast1      TranscribeRegion = "us-east-1"
	TranscribeRegionUsWest2      TranscribeRegion = "us-west-2"
	TranscribeRegionApNortheast2 TranscribeRegion = "ap-northeast-2"
	TranscribeRegionApSoutheast2 TranscribeRegion = "ap-southeast-2"
	TranscribeRegionApNortheast1 TranscribeRegion = "ap-northeast-1"
	TranscribeRegionCaCentral1   TranscribeRegion = "ca-central-1"
	TranscribeRegionEuCentral1   TranscribeRegion = "eu-central-1"
	TranscribeRegionEuWest1      TranscribeRegion = "eu-west-1"
	TranscribeRegionEuWest2      TranscribeRegion = "eu-west-2"
	TranscribeRegionSaEast1      TranscribeRegion = "sa-east-1"
	TranscribeRegionAuto         TranscribeRegion = "auto"
	TranscribeRegionUsGovWest1   TranscribeRegion = "us-gov-west-1"
)

// Values returns all known values for TranscribeRegion. 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 (TranscribeRegion) Values() []TranscribeRegion {
	return []TranscribeRegion{
		"us-east-2",
		"us-east-1",
		"us-west-2",
		"ap-northeast-2",
		"ap-southeast-2",
		"ap-northeast-1",
		"ca-central-1",
		"eu-central-1",
		"eu-west-1",
		"eu-west-2",
		"sa-east-1",
		"auto",
		"us-gov-west-1",
	}
}

type TranscribeVocabularyFilterMethod string

// Enum values for TranscribeVocabularyFilterMethod
const (
	TranscribeVocabularyFilterMethodRemove TranscribeVocabularyFilterMethod = "remove"
	TranscribeVocabularyFilterMethodMask   TranscribeVocabularyFilterMethod = "mask"
	TranscribeVocabularyFilterMethodTag    TranscribeVocabularyFilterMethod = "tag"
)

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