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 (933 lines) | stat: -rw-r--r-- 31,629 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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type ActiveSpeakerPosition string

// Enum values for ActiveSpeakerPosition
const (
	ActiveSpeakerPositionTopLeft     ActiveSpeakerPosition = "TopLeft"
	ActiveSpeakerPositionTopRight    ActiveSpeakerPosition = "TopRight"
	ActiveSpeakerPositionBottomLeft  ActiveSpeakerPosition = "BottomLeft"
	ActiveSpeakerPositionBottomRight ActiveSpeakerPosition = "BottomRight"
)

// Values returns all known values for ActiveSpeakerPosition. 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 (ActiveSpeakerPosition) Values() []ActiveSpeakerPosition {
	return []ActiveSpeakerPosition{
		"TopLeft",
		"TopRight",
		"BottomLeft",
		"BottomRight",
	}
}

type ArtifactsConcatenationState string

// Enum values for ArtifactsConcatenationState
const (
	ArtifactsConcatenationStateEnabled  ArtifactsConcatenationState = "Enabled"
	ArtifactsConcatenationStateDisabled ArtifactsConcatenationState = "Disabled"
)

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

type ArtifactsState string

// Enum values for ArtifactsState
const (
	ArtifactsStateEnabled  ArtifactsState = "Enabled"
	ArtifactsStateDisabled ArtifactsState = "Disabled"
)

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

type AudioArtifactsConcatenationState string

// Enum values for AudioArtifactsConcatenationState
const (
	AudioArtifactsConcatenationStateEnabled AudioArtifactsConcatenationState = "Enabled"
)

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

type AudioChannelsOption string

// Enum values for AudioChannelsOption
const (
	AudioChannelsOptionStereo AudioChannelsOption = "Stereo"
	AudioChannelsOptionMono   AudioChannelsOption = "Mono"
)

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

type AudioMuxType string

// Enum values for AudioMuxType
const (
	AudioMuxTypeAudioOnly                   AudioMuxType = "AudioOnly"
	AudioMuxTypeAudioWithActiveSpeakerVideo AudioMuxType = "AudioWithActiveSpeakerVideo"
	AudioMuxTypeAudioWithCompositedVideo    AudioMuxType = "AudioWithCompositedVideo"
)

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

type BorderColor string

// Enum values for BorderColor
const (
	BorderColorBlack  BorderColor = "Black"
	BorderColorBlue   BorderColor = "Blue"
	BorderColorRed    BorderColor = "Red"
	BorderColorGreen  BorderColor = "Green"
	BorderColorWhite  BorderColor = "White"
	BorderColorYellow BorderColor = "Yellow"
)

// Values returns all known values for BorderColor. 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 (BorderColor) Values() []BorderColor {
	return []BorderColor{
		"Black",
		"Blue",
		"Red",
		"Green",
		"White",
		"Yellow",
	}
}

type CallAnalyticsLanguageCode string

// Enum values for CallAnalyticsLanguageCode
const (
	CallAnalyticsLanguageCodeEnUs CallAnalyticsLanguageCode = "en-US"
	CallAnalyticsLanguageCodeEnGb CallAnalyticsLanguageCode = "en-GB"
	CallAnalyticsLanguageCodeEsUs CallAnalyticsLanguageCode = "es-US"
	CallAnalyticsLanguageCodeFrCa CallAnalyticsLanguageCode = "fr-CA"
	CallAnalyticsLanguageCodeFrFr CallAnalyticsLanguageCode = "fr-FR"
	CallAnalyticsLanguageCodeEnAu CallAnalyticsLanguageCode = "en-AU"
	CallAnalyticsLanguageCodeItIt CallAnalyticsLanguageCode = "it-IT"
	CallAnalyticsLanguageCodeDeDe CallAnalyticsLanguageCode = "de-DE"
	CallAnalyticsLanguageCodePtBr CallAnalyticsLanguageCode = "pt-BR"
)

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

type CanvasOrientation string

// Enum values for CanvasOrientation
const (
	CanvasOrientationLandscape CanvasOrientation = "Landscape"
	CanvasOrientationPortrait  CanvasOrientation = "Portrait"
)

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

type ConcatenationSinkType string

// Enum values for ConcatenationSinkType
const (
	ConcatenationSinkTypeS3Bucket ConcatenationSinkType = "S3Bucket"
)

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

type ConcatenationSourceType string

// Enum values for ConcatenationSourceType
const (
	ConcatenationSourceTypeMediaCapturePipeline ConcatenationSourceType = "MediaCapturePipeline"
)

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

type ContentMuxType string

// Enum values for ContentMuxType
const (
	ContentMuxTypeContentOnly ContentMuxType = "ContentOnly"
)

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

type ContentRedactionOutput string

// Enum values for ContentRedactionOutput
const (
	ContentRedactionOutputRedacted              ContentRedactionOutput = "redacted"
	ContentRedactionOutputRedactedAndUnredacted ContentRedactionOutput = "redacted_and_unredacted"
)

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

type ContentShareLayoutOption string

// Enum values for ContentShareLayoutOption
const (
	ContentShareLayoutOptionPresenterOnly     ContentShareLayoutOption = "PresenterOnly"
	ContentShareLayoutOptionHorizontal        ContentShareLayoutOption = "Horizontal"
	ContentShareLayoutOptionVertical          ContentShareLayoutOption = "Vertical"
	ContentShareLayoutOptionActiveSpeakerOnly ContentShareLayoutOption = "ActiveSpeakerOnly"
)

// Values returns all known values for ContentShareLayoutOption. 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 (ContentShareLayoutOption) Values() []ContentShareLayoutOption {
	return []ContentShareLayoutOption{
		"PresenterOnly",
		"Horizontal",
		"Vertical",
		"ActiveSpeakerOnly",
	}
}

type ContentType string

// Enum values for ContentType
const (
	ContentTypePii ContentType = "PII"
)

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

type ErrorCode string

// Enum values for ErrorCode
const (
	ErrorCodeBadRequest            ErrorCode = "BadRequest"
	ErrorCodeForbidden             ErrorCode = "Forbidden"
	ErrorCodeNotFound              ErrorCode = "NotFound"
	ErrorCodeResourceLimitExceeded ErrorCode = "ResourceLimitExceeded"
	ErrorCodeServiceFailure        ErrorCode = "ServiceFailure"
	ErrorCodeServiceUnavailable    ErrorCode = "ServiceUnavailable"
	ErrorCodeThrottling            ErrorCode = "Throttling"
)

// Values returns all known values for ErrorCode. 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 (ErrorCode) Values() []ErrorCode {
	return []ErrorCode{
		"BadRequest",
		"Forbidden",
		"NotFound",
		"ResourceLimitExceeded",
		"ServiceFailure",
		"ServiceUnavailable",
		"Throttling",
	}
}

type FragmentSelectorType string

// Enum values for FragmentSelectorType
const (
	FragmentSelectorTypeProducerTimestamp FragmentSelectorType = "ProducerTimestamp"
	FragmentSelectorTypeServerTimestamp   FragmentSelectorType = "ServerTimestamp"
)

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

type HighlightColor string

// Enum values for HighlightColor
const (
	HighlightColorBlack  HighlightColor = "Black"
	HighlightColorBlue   HighlightColor = "Blue"
	HighlightColorRed    HighlightColor = "Red"
	HighlightColorGreen  HighlightColor = "Green"
	HighlightColorWhite  HighlightColor = "White"
	HighlightColorYellow HighlightColor = "Yellow"
)

// Values returns all known values for HighlightColor. 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 (HighlightColor) Values() []HighlightColor {
	return []HighlightColor{
		"Black",
		"Blue",
		"Red",
		"Green",
		"White",
		"Yellow",
	}
}

type HorizontalTilePosition string

// Enum values for HorizontalTilePosition
const (
	HorizontalTilePositionTop    HorizontalTilePosition = "Top"
	HorizontalTilePositionBottom HorizontalTilePosition = "Bottom"
)

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

type KinesisVideoStreamPoolStatus string

// Enum values for KinesisVideoStreamPoolStatus
const (
	KinesisVideoStreamPoolStatusCreating KinesisVideoStreamPoolStatus = "CREATING"
	KinesisVideoStreamPoolStatusActive   KinesisVideoStreamPoolStatus = "ACTIVE"
	KinesisVideoStreamPoolStatusUpdating KinesisVideoStreamPoolStatus = "UPDATING"
	KinesisVideoStreamPoolStatusDeleting KinesisVideoStreamPoolStatus = "DELETING"
	KinesisVideoStreamPoolStatusFailed   KinesisVideoStreamPoolStatus = "FAILED"
)

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

type LayoutOption string

// Enum values for LayoutOption
const (
	LayoutOptionGridView LayoutOption = "GridView"
)

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

type LiveConnectorMuxType string

// Enum values for LiveConnectorMuxType
const (
	LiveConnectorMuxTypeAudioWithCompositedVideo    LiveConnectorMuxType = "AudioWithCompositedVideo"
	LiveConnectorMuxTypeAudioWithActiveSpeakerVideo LiveConnectorMuxType = "AudioWithActiveSpeakerVideo"
)

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

type LiveConnectorSinkType string

// Enum values for LiveConnectorSinkType
const (
	LiveConnectorSinkTypeRtmp LiveConnectorSinkType = "RTMP"
)

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

type LiveConnectorSourceType string

// Enum values for LiveConnectorSourceType
const (
	LiveConnectorSourceTypeChimeSdkMeeting LiveConnectorSourceType = "ChimeSdkMeeting"
)

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

type MediaEncoding string

// Enum values for MediaEncoding
const (
	MediaEncodingPcm MediaEncoding = "pcm"
)

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

type MediaInsightsPipelineConfigurationElementType string

// Enum values for MediaInsightsPipelineConfigurationElementType
const (
	MediaInsightsPipelineConfigurationElementTypeAmazonTranscribeCallAnalyticsProcessor MediaInsightsPipelineConfigurationElementType = "AmazonTranscribeCallAnalyticsProcessor"
	MediaInsightsPipelineConfigurationElementTypeVoiceAnalyticsProcessor                MediaInsightsPipelineConfigurationElementType = "VoiceAnalyticsProcessor"
	MediaInsightsPipelineConfigurationElementTypeAmazonTranscribeProcessor              MediaInsightsPipelineConfigurationElementType = "AmazonTranscribeProcessor"
	MediaInsightsPipelineConfigurationElementTypeKinesisDataStreamSink                  MediaInsightsPipelineConfigurationElementType = "KinesisDataStreamSink"
	MediaInsightsPipelineConfigurationElementTypeLambdaFunctionSink                     MediaInsightsPipelineConfigurationElementType = "LambdaFunctionSink"
	MediaInsightsPipelineConfigurationElementTypeSqsQueueSink                           MediaInsightsPipelineConfigurationElementType = "SqsQueueSink"
	MediaInsightsPipelineConfigurationElementTypeSnsTopicSink                           MediaInsightsPipelineConfigurationElementType = "SnsTopicSink"
	MediaInsightsPipelineConfigurationElementTypeS3RecordingSink                        MediaInsightsPipelineConfigurationElementType = "S3RecordingSink"
	MediaInsightsPipelineConfigurationElementTypeVoiceEnhancementSink                   MediaInsightsPipelineConfigurationElementType = "VoiceEnhancementSink"
)

// Values returns all known values for
// MediaInsightsPipelineConfigurationElementType. 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 (MediaInsightsPipelineConfigurationElementType) Values() []MediaInsightsPipelineConfigurationElementType {
	return []MediaInsightsPipelineConfigurationElementType{
		"AmazonTranscribeCallAnalyticsProcessor",
		"VoiceAnalyticsProcessor",
		"AmazonTranscribeProcessor",
		"KinesisDataStreamSink",
		"LambdaFunctionSink",
		"SqsQueueSink",
		"SnsTopicSink",
		"S3RecordingSink",
		"VoiceEnhancementSink",
	}
}

type MediaPipelineElementStatus string

// Enum values for MediaPipelineElementStatus
const (
	MediaPipelineElementStatusNotStarted   MediaPipelineElementStatus = "NotStarted"
	MediaPipelineElementStatusNotSupported MediaPipelineElementStatus = "NotSupported"
	MediaPipelineElementStatusInitializing MediaPipelineElementStatus = "Initializing"
	MediaPipelineElementStatusInProgress   MediaPipelineElementStatus = "InProgress"
	MediaPipelineElementStatusFailed       MediaPipelineElementStatus = "Failed"
	MediaPipelineElementStatusStopping     MediaPipelineElementStatus = "Stopping"
	MediaPipelineElementStatusStopped      MediaPipelineElementStatus = "Stopped"
	MediaPipelineElementStatusPaused       MediaPipelineElementStatus = "Paused"
)

// Values returns all known values for MediaPipelineElementStatus. 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 (MediaPipelineElementStatus) Values() []MediaPipelineElementStatus {
	return []MediaPipelineElementStatus{
		"NotStarted",
		"NotSupported",
		"Initializing",
		"InProgress",
		"Failed",
		"Stopping",
		"Stopped",
		"Paused",
	}
}

type MediaPipelineSinkType string

// Enum values for MediaPipelineSinkType
const (
	MediaPipelineSinkTypeS3Bucket MediaPipelineSinkType = "S3Bucket"
)

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

type MediaPipelineSourceType string

// Enum values for MediaPipelineSourceType
const (
	MediaPipelineSourceTypeChimeSdkMeeting MediaPipelineSourceType = "ChimeSdkMeeting"
)

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

type MediaPipelineStatus string

// Enum values for MediaPipelineStatus
const (
	MediaPipelineStatusInitializing MediaPipelineStatus = "Initializing"
	MediaPipelineStatusInProgress   MediaPipelineStatus = "InProgress"
	MediaPipelineStatusFailed       MediaPipelineStatus = "Failed"
	MediaPipelineStatusStopping     MediaPipelineStatus = "Stopping"
	MediaPipelineStatusStopped      MediaPipelineStatus = "Stopped"
	MediaPipelineStatusPaused       MediaPipelineStatus = "Paused"
	MediaPipelineStatusNotStarted   MediaPipelineStatus = "NotStarted"
)

// Values returns all known values for MediaPipelineStatus. 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 (MediaPipelineStatus) Values() []MediaPipelineStatus {
	return []MediaPipelineStatus{
		"Initializing",
		"InProgress",
		"Failed",
		"Stopping",
		"Stopped",
		"Paused",
		"NotStarted",
	}
}

type MediaPipelineStatusUpdate string

// Enum values for MediaPipelineStatusUpdate
const (
	MediaPipelineStatusUpdatePause  MediaPipelineStatusUpdate = "Pause"
	MediaPipelineStatusUpdateResume MediaPipelineStatusUpdate = "Resume"
)

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

type MediaPipelineTaskStatus string

// Enum values for MediaPipelineTaskStatus
const (
	MediaPipelineTaskStatusNotStarted   MediaPipelineTaskStatus = "NotStarted"
	MediaPipelineTaskStatusInitializing MediaPipelineTaskStatus = "Initializing"
	MediaPipelineTaskStatusInProgress   MediaPipelineTaskStatus = "InProgress"
	MediaPipelineTaskStatusFailed       MediaPipelineTaskStatus = "Failed"
	MediaPipelineTaskStatusStopping     MediaPipelineTaskStatus = "Stopping"
	MediaPipelineTaskStatusStopped      MediaPipelineTaskStatus = "Stopped"
)

// Values returns all known values for MediaPipelineTaskStatus. 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 (MediaPipelineTaskStatus) Values() []MediaPipelineTaskStatus {
	return []MediaPipelineTaskStatus{
		"NotStarted",
		"Initializing",
		"InProgress",
		"Failed",
		"Stopping",
		"Stopped",
	}
}

type MediaStreamPipelineSinkType string

// Enum values for MediaStreamPipelineSinkType
const (
	MediaStreamPipelineSinkTypeKinesisVideoStreamPool MediaStreamPipelineSinkType = "KinesisVideoStreamPool"
)

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

type MediaStreamType string

// Enum values for MediaStreamType
const (
	MediaStreamTypeMixedAudio      MediaStreamType = "MixedAudio"
	MediaStreamTypeIndividualAudio MediaStreamType = "IndividualAudio"
)

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

type PartialResultsStability string

// Enum values for PartialResultsStability
const (
	PartialResultsStabilityHigh   PartialResultsStability = "high"
	PartialResultsStabilityMedium PartialResultsStability = "medium"
	PartialResultsStabilityLow    PartialResultsStability = "low"
)

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

type ParticipantRole string

// Enum values for ParticipantRole
const (
	ParticipantRoleAgent    ParticipantRole = "AGENT"
	ParticipantRoleCustomer ParticipantRole = "CUSTOMER"
)

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

type PresenterPosition string

// Enum values for PresenterPosition
const (
	PresenterPositionTopLeft     PresenterPosition = "TopLeft"
	PresenterPositionTopRight    PresenterPosition = "TopRight"
	PresenterPositionBottomLeft  PresenterPosition = "BottomLeft"
	PresenterPositionBottomRight PresenterPosition = "BottomRight"
)

// Values returns all known values for PresenterPosition. 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 (PresenterPosition) Values() []PresenterPosition {
	return []PresenterPosition{
		"TopLeft",
		"TopRight",
		"BottomLeft",
		"BottomRight",
	}
}

type RealTimeAlertRuleType string

// Enum values for RealTimeAlertRuleType
const (
	RealTimeAlertRuleTypeKeywordMatch   RealTimeAlertRuleType = "KeywordMatch"
	RealTimeAlertRuleTypeSentiment      RealTimeAlertRuleType = "Sentiment"
	RealTimeAlertRuleTypeIssueDetection RealTimeAlertRuleType = "IssueDetection"
)

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

type RecordingFileFormat string

// Enum values for RecordingFileFormat
const (
	RecordingFileFormatWav  RecordingFileFormat = "Wav"
	RecordingFileFormatOpus RecordingFileFormat = "Opus"
)

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

type ResolutionOption string

// Enum values for ResolutionOption
const (
	ResolutionOptionHd  ResolutionOption = "HD"
	ResolutionOptionFhd ResolutionOption = "FHD"
)

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

type SentimentType string

// Enum values for SentimentType
const (
	SentimentTypeNegative SentimentType = "NEGATIVE"
)

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

type TileOrder string

// Enum values for TileOrder
const (
	TileOrderJoinSequence    TileOrder = "JoinSequence"
	TileOrderSpeakerSequence TileOrder = "SpeakerSequence"
)

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

type VerticalTilePosition string

// Enum values for VerticalTilePosition
const (
	VerticalTilePositionLeft  VerticalTilePosition = "Left"
	VerticalTilePositionRight VerticalTilePosition = "Right"
)

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

type VideoMuxType string

// Enum values for VideoMuxType
const (
	VideoMuxTypeVideoOnly VideoMuxType = "VideoOnly"
)

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

type VocabularyFilterMethod string

// Enum values for VocabularyFilterMethod
const (
	VocabularyFilterMethodRemove VocabularyFilterMethod = "remove"
	VocabularyFilterMethodMask   VocabularyFilterMethod = "mask"
	VocabularyFilterMethodTag    VocabularyFilterMethod = "tag"
)

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

type VoiceAnalyticsConfigurationStatus string

// Enum values for VoiceAnalyticsConfigurationStatus
const (
	VoiceAnalyticsConfigurationStatusEnabled  VoiceAnalyticsConfigurationStatus = "Enabled"
	VoiceAnalyticsConfigurationStatusDisabled VoiceAnalyticsConfigurationStatus = "Disabled"
)

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

type VoiceAnalyticsLanguageCode string

// Enum values for VoiceAnalyticsLanguageCode
const (
	VoiceAnalyticsLanguageCodeEnUs VoiceAnalyticsLanguageCode = "en-US"
)

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