File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 662,428 kB
  • sloc: java: 16,875; makefile: 432; sh: 175
file content (356 lines) | stat: -rw-r--r-- 10,390 bytes parent folder | download | duplicates (3)
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
350
351
352
353
354
355
356
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type APIName string

// Enum values for APIName
const (
	APINamePutMedia                   APIName = "PUT_MEDIA"
	APINameGetMedia                   APIName = "GET_MEDIA"
	APINameListFragments              APIName = "LIST_FRAGMENTS"
	APINameGetMediaForFragmentList    APIName = "GET_MEDIA_FOR_FRAGMENT_LIST"
	APINameGetHlsStreamingSessionUrl  APIName = "GET_HLS_STREAMING_SESSION_URL"
	APINameGetDashStreamingSessionUrl APIName = "GET_DASH_STREAMING_SESSION_URL"
	APINameGetClip                    APIName = "GET_CLIP"
	APINameGetImages                  APIName = "GET_IMAGES"
)

// Values returns all known values for APIName. 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 (APIName) Values() []APIName {
	return []APIName{
		"PUT_MEDIA",
		"GET_MEDIA",
		"LIST_FRAGMENTS",
		"GET_MEDIA_FOR_FRAGMENT_LIST",
		"GET_HLS_STREAMING_SESSION_URL",
		"GET_DASH_STREAMING_SESSION_URL",
		"GET_CLIP",
		"GET_IMAGES",
	}
}

type ChannelProtocol string

// Enum values for ChannelProtocol
const (
	ChannelProtocolWss    ChannelProtocol = "WSS"
	ChannelProtocolHttps  ChannelProtocol = "HTTPS"
	ChannelProtocolWebrtc ChannelProtocol = "WEBRTC"
)

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

type ChannelRole string

// Enum values for ChannelRole
const (
	ChannelRoleMaster ChannelRole = "MASTER"
	ChannelRoleViewer ChannelRole = "VIEWER"
)

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

type ChannelType string

// Enum values for ChannelType
const (
	ChannelTypeSingleMaster ChannelType = "SINGLE_MASTER"
	ChannelTypeFullMesh     ChannelType = "FULL_MESH"
)

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

type ComparisonOperator string

// Enum values for ComparisonOperator
const (
	ComparisonOperatorBeginsWith ComparisonOperator = "BEGINS_WITH"
)

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

type ConfigurationStatus string

// Enum values for ConfigurationStatus
const (
	ConfigurationStatusEnabled  ConfigurationStatus = "ENABLED"
	ConfigurationStatusDisabled ConfigurationStatus = "DISABLED"
)

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

type Format string

// Enum values for Format
const (
	FormatJpeg Format = "JPEG"
	FormatPng  Format = "PNG"
)

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

type FormatConfigKey string

// Enum values for FormatConfigKey
const (
	FormatConfigKeyJPEGQuality FormatConfigKey = "JPEGQuality"
)

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

type ImageSelectorType string

// Enum values for ImageSelectorType
const (
	ImageSelectorTypeServerTimestamp   ImageSelectorType = "SERVER_TIMESTAMP"
	ImageSelectorTypeProducerTimestamp ImageSelectorType = "PRODUCER_TIMESTAMP"
)

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

type MediaStorageConfigurationStatus string

// Enum values for MediaStorageConfigurationStatus
const (
	MediaStorageConfigurationStatusEnabled  MediaStorageConfigurationStatus = "ENABLED"
	MediaStorageConfigurationStatusDisabled MediaStorageConfigurationStatus = "DISABLED"
)

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

type MediaUriType string

// Enum values for MediaUriType
const (
	MediaUriTypeRtspUri MediaUriType = "RTSP_URI"
	MediaUriTypeFileUri MediaUriType = "FILE_URI"
)

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

type RecorderStatus string

// Enum values for RecorderStatus
const (
	RecorderStatusSuccess     RecorderStatus = "SUCCESS"
	RecorderStatusUserError   RecorderStatus = "USER_ERROR"
	RecorderStatusSystemError RecorderStatus = "SYSTEM_ERROR"
)

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

type Status string

// Enum values for Status
const (
	StatusCreating Status = "CREATING"
	StatusActive   Status = "ACTIVE"
	StatusUpdating Status = "UPDATING"
	StatusDeleting Status = "DELETING"
)

// 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{
		"CREATING",
		"ACTIVE",
		"UPDATING",
		"DELETING",
	}
}

type StrategyOnFullSize string

// Enum values for StrategyOnFullSize
const (
	StrategyOnFullSizeDeleteOldestMedia StrategyOnFullSize = "DELETE_OLDEST_MEDIA"
	StrategyOnFullSizeDenyNewMedia      StrategyOnFullSize = "DENY_NEW_MEDIA"
)

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

type SyncStatus string

// Enum values for SyncStatus
const (
	SyncStatusSyncing              SyncStatus = "SYNCING"
	SyncStatusAcknowledged         SyncStatus = "ACKNOWLEDGED"
	SyncStatusInSync               SyncStatus = "IN_SYNC"
	SyncStatusSyncFailed           SyncStatus = "SYNC_FAILED"
	SyncStatusDeleting             SyncStatus = "DELETING"
	SyncStatusDeleteFailed         SyncStatus = "DELETE_FAILED"
	SyncStatusDeletingAcknowledged SyncStatus = "DELETING_ACKNOWLEDGED"
)

// Values returns all known values for SyncStatus. 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 (SyncStatus) Values() []SyncStatus {
	return []SyncStatus{
		"SYNCING",
		"ACKNOWLEDGED",
		"IN_SYNC",
		"SYNC_FAILED",
		"DELETING",
		"DELETE_FAILED",
		"DELETING_ACKNOWLEDGED",
	}
}

type UpdateDataRetentionOperation string

// Enum values for UpdateDataRetentionOperation
const (
	UpdateDataRetentionOperationIncreaseDataRetention UpdateDataRetentionOperation = "INCREASE_DATA_RETENTION"
	UpdateDataRetentionOperationDecreaseDataRetention UpdateDataRetentionOperation = "DECREASE_DATA_RETENTION"
)

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

type UploaderStatus string

// Enum values for UploaderStatus
const (
	UploaderStatusSuccess     UploaderStatus = "SUCCESS"
	UploaderStatusUserError   UploaderStatus = "USER_ERROR"
	UploaderStatusSystemError UploaderStatus = "SYSTEM_ERROR"
)

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