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 (349 lines) | stat: -rw-r--r-- 11,403 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AdTriggersElement string

// Enum values for AdTriggersElement
const (
	AdTriggersElementSpliceInsert                           AdTriggersElement = "SPLICE_INSERT"
	AdTriggersElementBreak                                  AdTriggersElement = "BREAK"
	AdTriggersElementProviderAdvertisement                  AdTriggersElement = "PROVIDER_ADVERTISEMENT"
	AdTriggersElementDistributorAdvertisement               AdTriggersElement = "DISTRIBUTOR_ADVERTISEMENT"
	AdTriggersElementProviderPlacementOpportunity           AdTriggersElement = "PROVIDER_PLACEMENT_OPPORTUNITY"
	AdTriggersElementDistributorPlacementOpportunity        AdTriggersElement = "DISTRIBUTOR_PLACEMENT_OPPORTUNITY"
	AdTriggersElementProviderOverlayPlacementOpportunity    AdTriggersElement = "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY"
	AdTriggersElementDistributorOverlayPlacementOpportunity AdTriggersElement = "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
)

// Values returns all known values for AdTriggersElement. 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 (AdTriggersElement) Values() []AdTriggersElement {
	return []AdTriggersElement{
		"SPLICE_INSERT",
		"BREAK",
		"PROVIDER_ADVERTISEMENT",
		"DISTRIBUTOR_ADVERTISEMENT",
		"PROVIDER_PLACEMENT_OPPORTUNITY",
		"DISTRIBUTOR_PLACEMENT_OPPORTUNITY",
		"PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY",
		"DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
	}
}

type PeriodTriggersElement string

// Enum values for PeriodTriggersElement
const (
	PeriodTriggersElementAds PeriodTriggersElement = "ADS"
)

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

type AdMarkers string

// Enum values for AdMarkers
const (
	AdMarkersNone           AdMarkers = "NONE"
	AdMarkersScte35Enhanced AdMarkers = "SCTE35_ENHANCED"
	AdMarkersPassthrough    AdMarkers = "PASSTHROUGH"
	AdMarkersDaterange      AdMarkers = "DATERANGE"
)

// Values returns all known values for AdMarkers. 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 (AdMarkers) Values() []AdMarkers {
	return []AdMarkers{
		"NONE",
		"SCTE35_ENHANCED",
		"PASSTHROUGH",
		"DATERANGE",
	}
}

type AdsOnDeliveryRestrictions string

// Enum values for AdsOnDeliveryRestrictions
const (
	AdsOnDeliveryRestrictionsNone         AdsOnDeliveryRestrictions = "NONE"
	AdsOnDeliveryRestrictionsRestricted   AdsOnDeliveryRestrictions = "RESTRICTED"
	AdsOnDeliveryRestrictionsUnrestricted AdsOnDeliveryRestrictions = "UNRESTRICTED"
	AdsOnDeliveryRestrictionsBoth         AdsOnDeliveryRestrictions = "BOTH"
)

// Values returns all known values for AdsOnDeliveryRestrictions. 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 (AdsOnDeliveryRestrictions) Values() []AdsOnDeliveryRestrictions {
	return []AdsOnDeliveryRestrictions{
		"NONE",
		"RESTRICTED",
		"UNRESTRICTED",
		"BOTH",
	}
}

type CmafEncryptionMethod string

// Enum values for CmafEncryptionMethod
const (
	CmafEncryptionMethodSampleAes CmafEncryptionMethod = "SAMPLE_AES"
	CmafEncryptionMethodAesCtr    CmafEncryptionMethod = "AES_CTR"
)

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

type EncryptionMethod string

// Enum values for EncryptionMethod
const (
	EncryptionMethodAes128    EncryptionMethod = "AES_128"
	EncryptionMethodSampleAes EncryptionMethod = "SAMPLE_AES"
)

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

type ManifestLayout string

// Enum values for ManifestLayout
const (
	ManifestLayoutFull               ManifestLayout = "FULL"
	ManifestLayoutCompact            ManifestLayout = "COMPACT"
	ManifestLayoutDrmTopLevelCompact ManifestLayout = "DRM_TOP_LEVEL_COMPACT"
)

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

type Origination string

// Enum values for Origination
const (
	OriginationAllow Origination = "ALLOW"
	OriginationDeny  Origination = "DENY"
)

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

type PlaylistType string

// Enum values for PlaylistType
const (
	PlaylistTypeNone  PlaylistType = "NONE"
	PlaylistTypeEvent PlaylistType = "EVENT"
	PlaylistTypeVod   PlaylistType = "VOD"
)

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

type PresetSpeke20Audio string

// Enum values for PresetSpeke20Audio
const (
	PresetSpeke20AudioPresetAudio1 PresetSpeke20Audio = "PRESET-AUDIO-1"
	PresetSpeke20AudioPresetAudio2 PresetSpeke20Audio = "PRESET-AUDIO-2"
	PresetSpeke20AudioPresetAudio3 PresetSpeke20Audio = "PRESET-AUDIO-3"
	PresetSpeke20AudioShared       PresetSpeke20Audio = "SHARED"
	PresetSpeke20AudioUnencrypted  PresetSpeke20Audio = "UNENCRYPTED"
)

// Values returns all known values for PresetSpeke20Audio. 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 (PresetSpeke20Audio) Values() []PresetSpeke20Audio {
	return []PresetSpeke20Audio{
		"PRESET-AUDIO-1",
		"PRESET-AUDIO-2",
		"PRESET-AUDIO-3",
		"SHARED",
		"UNENCRYPTED",
	}
}

type PresetSpeke20Video string

// Enum values for PresetSpeke20Video
const (
	PresetSpeke20VideoPresetVideo1 PresetSpeke20Video = "PRESET-VIDEO-1"
	PresetSpeke20VideoPresetVideo2 PresetSpeke20Video = "PRESET-VIDEO-2"
	PresetSpeke20VideoPresetVideo3 PresetSpeke20Video = "PRESET-VIDEO-3"
	PresetSpeke20VideoPresetVideo4 PresetSpeke20Video = "PRESET-VIDEO-4"
	PresetSpeke20VideoPresetVideo5 PresetSpeke20Video = "PRESET-VIDEO-5"
	PresetSpeke20VideoPresetVideo6 PresetSpeke20Video = "PRESET-VIDEO-6"
	PresetSpeke20VideoPresetVideo7 PresetSpeke20Video = "PRESET-VIDEO-7"
	PresetSpeke20VideoPresetVideo8 PresetSpeke20Video = "PRESET-VIDEO-8"
	PresetSpeke20VideoShared       PresetSpeke20Video = "SHARED"
	PresetSpeke20VideoUnencrypted  PresetSpeke20Video = "UNENCRYPTED"
)

// Values returns all known values for PresetSpeke20Video. 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 (PresetSpeke20Video) Values() []PresetSpeke20Video {
	return []PresetSpeke20Video{
		"PRESET-VIDEO-1",
		"PRESET-VIDEO-2",
		"PRESET-VIDEO-3",
		"PRESET-VIDEO-4",
		"PRESET-VIDEO-5",
		"PRESET-VIDEO-6",
		"PRESET-VIDEO-7",
		"PRESET-VIDEO-8",
		"SHARED",
		"UNENCRYPTED",
	}
}

type Profile string

// Enum values for Profile
const (
	ProfileNone        Profile = "NONE"
	ProfileHbbtv15     Profile = "HBBTV_1_5"
	ProfileHybridcast  Profile = "HYBRIDCAST"
	ProfileDvbDash2014 Profile = "DVB_DASH_2014"
)

// Values returns all known values for Profile. 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 (Profile) Values() []Profile {
	return []Profile{
		"NONE",
		"HBBTV_1_5",
		"HYBRIDCAST",
		"DVB_DASH_2014",
	}
}

type SegmentTemplateFormat string

// Enum values for SegmentTemplateFormat
const (
	SegmentTemplateFormatNumberWithTimeline SegmentTemplateFormat = "NUMBER_WITH_TIMELINE"
	SegmentTemplateFormatTimeWithTimeline   SegmentTemplateFormat = "TIME_WITH_TIMELINE"
	SegmentTemplateFormatNumberWithDuration SegmentTemplateFormat = "NUMBER_WITH_DURATION"
)

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

type Status string

// Enum values for Status
const (
	StatusInProgress Status = "IN_PROGRESS"
	StatusSucceeded  Status = "SUCCEEDED"
	StatusFailed     Status = "FAILED"
)

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

type StreamOrder string

// Enum values for StreamOrder
const (
	StreamOrderOriginal               StreamOrder = "ORIGINAL"
	StreamOrderVideoBitrateAscending  StreamOrder = "VIDEO_BITRATE_ASCENDING"
	StreamOrderVideoBitrateDescending StreamOrder = "VIDEO_BITRATE_DESCENDING"
)

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

type UtcTiming string

// Enum values for UtcTiming
const (
	UtcTimingNone       UtcTiming = "NONE"
	UtcTimingHttpHead   UtcTiming = "HTTP-HEAD"
	UtcTimingHttpIso    UtcTiming = "HTTP-ISO"
	UtcTimingHttpXsdate UtcTiming = "HTTP-XSDATE"
)

// Values returns all known values for UtcTiming. 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 (UtcTiming) Values() []UtcTiming {
	return []UtcTiming{
		"NONE",
		"HTTP-HEAD",
		"HTTP-ISO",
		"HTTP-XSDATE",
	}
}