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 (1006 lines) | stat: -rw-r--r-- 33,971 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
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type Attribute string

// Enum values for Attribute
const (
	AttributeDefault      Attribute = "DEFAULT"
	AttributeAll          Attribute = "ALL"
	AttributeAgeRange     Attribute = "AGE_RANGE"
	AttributeBeard        Attribute = "BEARD"
	AttributeEmotions     Attribute = "EMOTIONS"
	AttributeEyeDirection Attribute = "EYE_DIRECTION"
	AttributeEyeglasses   Attribute = "EYEGLASSES"
	AttributeEyesOpen     Attribute = "EYES_OPEN"
	AttributeGender       Attribute = "GENDER"
	AttributeMouthOpen    Attribute = "MOUTH_OPEN"
	AttributeMustache     Attribute = "MUSTACHE"
	AttributeFaceOccluded Attribute = "FACE_OCCLUDED"
	AttributeSmile        Attribute = "SMILE"
	AttributeSunglasses   Attribute = "SUNGLASSES"
)

// Values returns all known values for Attribute. 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 (Attribute) Values() []Attribute {
	return []Attribute{
		"DEFAULT",
		"ALL",
		"AGE_RANGE",
		"BEARD",
		"EMOTIONS",
		"EYE_DIRECTION",
		"EYEGLASSES",
		"EYES_OPEN",
		"GENDER",
		"MOUTH_OPEN",
		"MUSTACHE",
		"FACE_OCCLUDED",
		"SMILE",
		"SUNGLASSES",
	}
}

type BodyPart string

// Enum values for BodyPart
const (
	BodyPartFace      BodyPart = "FACE"
	BodyPartHead      BodyPart = "HEAD"
	BodyPartLeftHand  BodyPart = "LEFT_HAND"
	BodyPartRightHand BodyPart = "RIGHT_HAND"
)

// Values returns all known values for BodyPart. 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 (BodyPart) Values() []BodyPart {
	return []BodyPart{
		"FACE",
		"HEAD",
		"LEFT_HAND",
		"RIGHT_HAND",
	}
}

type CelebrityRecognitionSortBy string

// Enum values for CelebrityRecognitionSortBy
const (
	CelebrityRecognitionSortById        CelebrityRecognitionSortBy = "ID"
	CelebrityRecognitionSortByTimestamp CelebrityRecognitionSortBy = "TIMESTAMP"
)

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

type ContentClassifier string

// Enum values for ContentClassifier
const (
	ContentClassifierFreeOfPersonallyIdentifiableInformation ContentClassifier = "FreeOfPersonallyIdentifiableInformation"
	ContentClassifierFreeOfAdultContent                      ContentClassifier = "FreeOfAdultContent"
)

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

type ContentModerationAggregateBy string

// Enum values for ContentModerationAggregateBy
const (
	ContentModerationAggregateByTimestamps ContentModerationAggregateBy = "TIMESTAMPS"
	ContentModerationAggregateBySegments   ContentModerationAggregateBy = "SEGMENTS"
)

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

type ContentModerationSortBy string

// Enum values for ContentModerationSortBy
const (
	ContentModerationSortByName      ContentModerationSortBy = "NAME"
	ContentModerationSortByTimestamp ContentModerationSortBy = "TIMESTAMP"
)

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

type CustomizationFeature string

// Enum values for CustomizationFeature
const (
	CustomizationFeatureContentModeration CustomizationFeature = "CONTENT_MODERATION"
	CustomizationFeatureCustomLabels      CustomizationFeature = "CUSTOM_LABELS"
)

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

type DatasetStatus string

// Enum values for DatasetStatus
const (
	DatasetStatusCreateInProgress DatasetStatus = "CREATE_IN_PROGRESS"
	DatasetStatusCreateComplete   DatasetStatus = "CREATE_COMPLETE"
	DatasetStatusCreateFailed     DatasetStatus = "CREATE_FAILED"
	DatasetStatusUpdateInProgress DatasetStatus = "UPDATE_IN_PROGRESS"
	DatasetStatusUpdateComplete   DatasetStatus = "UPDATE_COMPLETE"
	DatasetStatusUpdateFailed     DatasetStatus = "UPDATE_FAILED"
	DatasetStatusDeleteInProgress DatasetStatus = "DELETE_IN_PROGRESS"
)

// Values returns all known values for DatasetStatus. 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 (DatasetStatus) Values() []DatasetStatus {
	return []DatasetStatus{
		"CREATE_IN_PROGRESS",
		"CREATE_COMPLETE",
		"CREATE_FAILED",
		"UPDATE_IN_PROGRESS",
		"UPDATE_COMPLETE",
		"UPDATE_FAILED",
		"DELETE_IN_PROGRESS",
	}
}

type DatasetStatusMessageCode string

// Enum values for DatasetStatusMessageCode
const (
	DatasetStatusMessageCodeSuccess      DatasetStatusMessageCode = "SUCCESS"
	DatasetStatusMessageCodeServiceError DatasetStatusMessageCode = "SERVICE_ERROR"
	DatasetStatusMessageCodeClientError  DatasetStatusMessageCode = "CLIENT_ERROR"
)

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

type DatasetType string

// Enum values for DatasetType
const (
	DatasetTypeTrain DatasetType = "TRAIN"
	DatasetTypeTest  DatasetType = "TEST"
)

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

type DetectLabelsFeatureName string

// Enum values for DetectLabelsFeatureName
const (
	DetectLabelsFeatureNameGeneralLabels   DetectLabelsFeatureName = "GENERAL_LABELS"
	DetectLabelsFeatureNameImageProperties DetectLabelsFeatureName = "IMAGE_PROPERTIES"
)

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

type EmotionName string

// Enum values for EmotionName
const (
	EmotionNameHappy     EmotionName = "HAPPY"
	EmotionNameSad       EmotionName = "SAD"
	EmotionNameAngry     EmotionName = "ANGRY"
	EmotionNameConfused  EmotionName = "CONFUSED"
	EmotionNameDisgusted EmotionName = "DISGUSTED"
	EmotionNameSurprised EmotionName = "SURPRISED"
	EmotionNameCalm      EmotionName = "CALM"
	EmotionNameUnknown   EmotionName = "UNKNOWN"
	EmotionNameFear      EmotionName = "FEAR"
)

// Values returns all known values for EmotionName. 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 (EmotionName) Values() []EmotionName {
	return []EmotionName{
		"HAPPY",
		"SAD",
		"ANGRY",
		"CONFUSED",
		"DISGUSTED",
		"SURPRISED",
		"CALM",
		"UNKNOWN",
		"FEAR",
	}
}

type FaceAttributes string

// Enum values for FaceAttributes
const (
	FaceAttributesDefault FaceAttributes = "DEFAULT"
	FaceAttributesAll     FaceAttributes = "ALL"
)

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

type FaceSearchSortBy string

// Enum values for FaceSearchSortBy
const (
	FaceSearchSortByIndex     FaceSearchSortBy = "INDEX"
	FaceSearchSortByTimestamp FaceSearchSortBy = "TIMESTAMP"
)

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

type GenderType string

// Enum values for GenderType
const (
	GenderTypeMale   GenderType = "Male"
	GenderTypeFemale GenderType = "Female"
)

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

type KnownGenderType string

// Enum values for KnownGenderType
const (
	KnownGenderTypeMale      KnownGenderType = "Male"
	KnownGenderTypeFemale    KnownGenderType = "Female"
	KnownGenderTypeNonbinary KnownGenderType = "Nonbinary"
	KnownGenderTypeUnlisted  KnownGenderType = "Unlisted"
)

// Values returns all known values for KnownGenderType. 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 (KnownGenderType) Values() []KnownGenderType {
	return []KnownGenderType{
		"Male",
		"Female",
		"Nonbinary",
		"Unlisted",
	}
}

type LabelDetectionAggregateBy string

// Enum values for LabelDetectionAggregateBy
const (
	LabelDetectionAggregateByTimestamps LabelDetectionAggregateBy = "TIMESTAMPS"
	LabelDetectionAggregateBySegments   LabelDetectionAggregateBy = "SEGMENTS"
)

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

type LabelDetectionFeatureName string

// Enum values for LabelDetectionFeatureName
const (
	LabelDetectionFeatureNameGeneralLabels LabelDetectionFeatureName = "GENERAL_LABELS"
)

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

type LabelDetectionSortBy string

// Enum values for LabelDetectionSortBy
const (
	LabelDetectionSortByName      LabelDetectionSortBy = "NAME"
	LabelDetectionSortByTimestamp LabelDetectionSortBy = "TIMESTAMP"
)

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

type LandmarkType string

// Enum values for LandmarkType
const (
	LandmarkTypeEyeLeft           LandmarkType = "eyeLeft"
	LandmarkTypeEyeRight          LandmarkType = "eyeRight"
	LandmarkTypeNose              LandmarkType = "nose"
	LandmarkTypeMouthLeft         LandmarkType = "mouthLeft"
	LandmarkTypeMouthRight        LandmarkType = "mouthRight"
	LandmarkTypeLeftEyeBrowLeft   LandmarkType = "leftEyeBrowLeft"
	LandmarkTypeLeftEyeBrowRight  LandmarkType = "leftEyeBrowRight"
	LandmarkTypeLeftEyeBrowUp     LandmarkType = "leftEyeBrowUp"
	LandmarkTypeRightEyeBrowLeft  LandmarkType = "rightEyeBrowLeft"
	LandmarkTypeRightEyeBrowRight LandmarkType = "rightEyeBrowRight"
	LandmarkTypeRightEyeBrowUp    LandmarkType = "rightEyeBrowUp"
	LandmarkTypeLeftEyeLeft       LandmarkType = "leftEyeLeft"
	LandmarkTypeLeftEyeRight      LandmarkType = "leftEyeRight"
	LandmarkTypeLeftEyeUp         LandmarkType = "leftEyeUp"
	LandmarkTypeLeftEyeDown       LandmarkType = "leftEyeDown"
	LandmarkTypeRightEyeLeft      LandmarkType = "rightEyeLeft"
	LandmarkTypeRightEyeRight     LandmarkType = "rightEyeRight"
	LandmarkTypeRightEyeUp        LandmarkType = "rightEyeUp"
	LandmarkTypeRightEyeDown      LandmarkType = "rightEyeDown"
	LandmarkTypeNoseLeft          LandmarkType = "noseLeft"
	LandmarkTypeNoseRight         LandmarkType = "noseRight"
	LandmarkTypeMouthUp           LandmarkType = "mouthUp"
	LandmarkTypeMouthDown         LandmarkType = "mouthDown"
	LandmarkTypeLeftPupil         LandmarkType = "leftPupil"
	LandmarkTypeRightPupil        LandmarkType = "rightPupil"
	LandmarkTypeUpperJawlineLeft  LandmarkType = "upperJawlineLeft"
	LandmarkTypeMidJawlineLeft    LandmarkType = "midJawlineLeft"
	LandmarkTypeChinBottom        LandmarkType = "chinBottom"
	LandmarkTypeMidJawlineRight   LandmarkType = "midJawlineRight"
	LandmarkTypeUpperJawlineRight LandmarkType = "upperJawlineRight"
)

// Values returns all known values for LandmarkType. 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 (LandmarkType) Values() []LandmarkType {
	return []LandmarkType{
		"eyeLeft",
		"eyeRight",
		"nose",
		"mouthLeft",
		"mouthRight",
		"leftEyeBrowLeft",
		"leftEyeBrowRight",
		"leftEyeBrowUp",
		"rightEyeBrowLeft",
		"rightEyeBrowRight",
		"rightEyeBrowUp",
		"leftEyeLeft",
		"leftEyeRight",
		"leftEyeUp",
		"leftEyeDown",
		"rightEyeLeft",
		"rightEyeRight",
		"rightEyeUp",
		"rightEyeDown",
		"noseLeft",
		"noseRight",
		"mouthUp",
		"mouthDown",
		"leftPupil",
		"rightPupil",
		"upperJawlineLeft",
		"midJawlineLeft",
		"chinBottom",
		"midJawlineRight",
		"upperJawlineRight",
	}
}

type LivenessSessionStatus string

// Enum values for LivenessSessionStatus
const (
	LivenessSessionStatusCreated    LivenessSessionStatus = "CREATED"
	LivenessSessionStatusInProgress LivenessSessionStatus = "IN_PROGRESS"
	LivenessSessionStatusSucceeded  LivenessSessionStatus = "SUCCEEDED"
	LivenessSessionStatusFailed     LivenessSessionStatus = "FAILED"
	LivenessSessionStatusExpired    LivenessSessionStatus = "EXPIRED"
)

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

type MediaAnalysisJobFailureCode string

// Enum values for MediaAnalysisJobFailureCode
const (
	MediaAnalysisJobFailureCodeInternalError       MediaAnalysisJobFailureCode = "INTERNAL_ERROR"
	MediaAnalysisJobFailureCodeInvalidS3Object     MediaAnalysisJobFailureCode = "INVALID_S3_OBJECT"
	MediaAnalysisJobFailureCodeInvalidManifest     MediaAnalysisJobFailureCode = "INVALID_MANIFEST"
	MediaAnalysisJobFailureCodeInvalidOutputConfig MediaAnalysisJobFailureCode = "INVALID_OUTPUT_CONFIG"
	MediaAnalysisJobFailureCodeInvalidKmsKey       MediaAnalysisJobFailureCode = "INVALID_KMS_KEY"
	MediaAnalysisJobFailureCodeAccessDenied        MediaAnalysisJobFailureCode = "ACCESS_DENIED"
	MediaAnalysisJobFailureCodeResourceNotFound    MediaAnalysisJobFailureCode = "RESOURCE_NOT_FOUND"
	MediaAnalysisJobFailureCodeResourceNotReady    MediaAnalysisJobFailureCode = "RESOURCE_NOT_READY"
	MediaAnalysisJobFailureCodeThrottled           MediaAnalysisJobFailureCode = "THROTTLED"
)

// Values returns all known values for MediaAnalysisJobFailureCode. 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 (MediaAnalysisJobFailureCode) Values() []MediaAnalysisJobFailureCode {
	return []MediaAnalysisJobFailureCode{
		"INTERNAL_ERROR",
		"INVALID_S3_OBJECT",
		"INVALID_MANIFEST",
		"INVALID_OUTPUT_CONFIG",
		"INVALID_KMS_KEY",
		"ACCESS_DENIED",
		"RESOURCE_NOT_FOUND",
		"RESOURCE_NOT_READY",
		"THROTTLED",
	}
}

type MediaAnalysisJobStatus string

// Enum values for MediaAnalysisJobStatus
const (
	MediaAnalysisJobStatusCreated    MediaAnalysisJobStatus = "CREATED"
	MediaAnalysisJobStatusQueued     MediaAnalysisJobStatus = "QUEUED"
	MediaAnalysisJobStatusInProgress MediaAnalysisJobStatus = "IN_PROGRESS"
	MediaAnalysisJobStatusSucceeded  MediaAnalysisJobStatus = "SUCCEEDED"
	MediaAnalysisJobStatusFailed     MediaAnalysisJobStatus = "FAILED"
)

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

type OrientationCorrection string

// Enum values for OrientationCorrection
const (
	OrientationCorrectionRotate0   OrientationCorrection = "ROTATE_0"
	OrientationCorrectionRotate90  OrientationCorrection = "ROTATE_90"
	OrientationCorrectionRotate180 OrientationCorrection = "ROTATE_180"
	OrientationCorrectionRotate270 OrientationCorrection = "ROTATE_270"
)

// Values returns all known values for OrientationCorrection. 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 (OrientationCorrection) Values() []OrientationCorrection {
	return []OrientationCorrection{
		"ROTATE_0",
		"ROTATE_90",
		"ROTATE_180",
		"ROTATE_270",
	}
}

type PersonTrackingSortBy string

// Enum values for PersonTrackingSortBy
const (
	PersonTrackingSortByIndex     PersonTrackingSortBy = "INDEX"
	PersonTrackingSortByTimestamp PersonTrackingSortBy = "TIMESTAMP"
)

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

type ProjectAutoUpdate string

// Enum values for ProjectAutoUpdate
const (
	ProjectAutoUpdateEnabled  ProjectAutoUpdate = "ENABLED"
	ProjectAutoUpdateDisabled ProjectAutoUpdate = "DISABLED"
)

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

type ProjectStatus string

// Enum values for ProjectStatus
const (
	ProjectStatusCreating ProjectStatus = "CREATING"
	ProjectStatusCreated  ProjectStatus = "CREATED"
	ProjectStatusDeleting ProjectStatus = "DELETING"
)

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

type ProjectVersionStatus string

// Enum values for ProjectVersionStatus
const (
	ProjectVersionStatusTrainingInProgress ProjectVersionStatus = "TRAINING_IN_PROGRESS"
	ProjectVersionStatusTrainingCompleted  ProjectVersionStatus = "TRAINING_COMPLETED"
	ProjectVersionStatusTrainingFailed     ProjectVersionStatus = "TRAINING_FAILED"
	ProjectVersionStatusStarting           ProjectVersionStatus = "STARTING"
	ProjectVersionStatusRunning            ProjectVersionStatus = "RUNNING"
	ProjectVersionStatusFailed             ProjectVersionStatus = "FAILED"
	ProjectVersionStatusStopping           ProjectVersionStatus = "STOPPING"
	ProjectVersionStatusStopped            ProjectVersionStatus = "STOPPED"
	ProjectVersionStatusDeleting           ProjectVersionStatus = "DELETING"
	ProjectVersionStatusCopyingInProgress  ProjectVersionStatus = "COPYING_IN_PROGRESS"
	ProjectVersionStatusCopyingCompleted   ProjectVersionStatus = "COPYING_COMPLETED"
	ProjectVersionStatusCopyingFailed      ProjectVersionStatus = "COPYING_FAILED"
	ProjectVersionStatusDeprecated         ProjectVersionStatus = "DEPRECATED"
	ProjectVersionStatusExpired            ProjectVersionStatus = "EXPIRED"
)

// Values returns all known values for ProjectVersionStatus. 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 (ProjectVersionStatus) Values() []ProjectVersionStatus {
	return []ProjectVersionStatus{
		"TRAINING_IN_PROGRESS",
		"TRAINING_COMPLETED",
		"TRAINING_FAILED",
		"STARTING",
		"RUNNING",
		"FAILED",
		"STOPPING",
		"STOPPED",
		"DELETING",
		"COPYING_IN_PROGRESS",
		"COPYING_COMPLETED",
		"COPYING_FAILED",
		"DEPRECATED",
		"EXPIRED",
	}
}

type ProtectiveEquipmentType string

// Enum values for ProtectiveEquipmentType
const (
	ProtectiveEquipmentTypeFaceCover ProtectiveEquipmentType = "FACE_COVER"
	ProtectiveEquipmentTypeHandCover ProtectiveEquipmentType = "HAND_COVER"
	ProtectiveEquipmentTypeHeadCover ProtectiveEquipmentType = "HEAD_COVER"
)

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

type QualityFilter string

// Enum values for QualityFilter
const (
	QualityFilterNone   QualityFilter = "NONE"
	QualityFilterAuto   QualityFilter = "AUTO"
	QualityFilterLow    QualityFilter = "LOW"
	QualityFilterMedium QualityFilter = "MEDIUM"
	QualityFilterHigh   QualityFilter = "HIGH"
)

// Values returns all known values for QualityFilter. 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 (QualityFilter) Values() []QualityFilter {
	return []QualityFilter{
		"NONE",
		"AUTO",
		"LOW",
		"MEDIUM",
		"HIGH",
	}
}

type Reason string

// Enum values for Reason
const (
	ReasonExceedsMaxFaces  Reason = "EXCEEDS_MAX_FACES"
	ReasonExtremePose      Reason = "EXTREME_POSE"
	ReasonLowBrightness    Reason = "LOW_BRIGHTNESS"
	ReasonLowSharpness     Reason = "LOW_SHARPNESS"
	ReasonLowConfidence    Reason = "LOW_CONFIDENCE"
	ReasonSmallBoundingBox Reason = "SMALL_BOUNDING_BOX"
	ReasonLowFaceQuality   Reason = "LOW_FACE_QUALITY"
)

// Values returns all known values for Reason. 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 (Reason) Values() []Reason {
	return []Reason{
		"EXCEEDS_MAX_FACES",
		"EXTREME_POSE",
		"LOW_BRIGHTNESS",
		"LOW_SHARPNESS",
		"LOW_CONFIDENCE",
		"SMALL_BOUNDING_BOX",
		"LOW_FACE_QUALITY",
	}
}

type SegmentType string

// Enum values for SegmentType
const (
	SegmentTypeTechnicalCue SegmentType = "TECHNICAL_CUE"
	SegmentTypeShot         SegmentType = "SHOT"
)

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

type StreamProcessorParameterToDelete string

// Enum values for StreamProcessorParameterToDelete
const (
	StreamProcessorParameterToDeleteConnectedHomeMinConfidence StreamProcessorParameterToDelete = "ConnectedHomeMinConfidence"
	StreamProcessorParameterToDeleteRegionsOfInterest          StreamProcessorParameterToDelete = "RegionsOfInterest"
)

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

type StreamProcessorStatus string

// Enum values for StreamProcessorStatus
const (
	StreamProcessorStatusStopped  StreamProcessorStatus = "STOPPED"
	StreamProcessorStatusStarting StreamProcessorStatus = "STARTING"
	StreamProcessorStatusRunning  StreamProcessorStatus = "RUNNING"
	StreamProcessorStatusFailed   StreamProcessorStatus = "FAILED"
	StreamProcessorStatusStopping StreamProcessorStatus = "STOPPING"
	StreamProcessorStatusUpdating StreamProcessorStatus = "UPDATING"
)

// Values returns all known values for StreamProcessorStatus. 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 (StreamProcessorStatus) Values() []StreamProcessorStatus {
	return []StreamProcessorStatus{
		"STOPPED",
		"STARTING",
		"RUNNING",
		"FAILED",
		"STOPPING",
		"UPDATING",
	}
}

type TechnicalCueType string

// Enum values for TechnicalCueType
const (
	TechnicalCueTypeColorBars      TechnicalCueType = "ColorBars"
	TechnicalCueTypeEndCredits     TechnicalCueType = "EndCredits"
	TechnicalCueTypeBlackFrames    TechnicalCueType = "BlackFrames"
	TechnicalCueTypeOpeningCredits TechnicalCueType = "OpeningCredits"
	TechnicalCueTypeStudioLogo     TechnicalCueType = "StudioLogo"
	TechnicalCueTypeSlate          TechnicalCueType = "Slate"
	TechnicalCueTypeContent        TechnicalCueType = "Content"
)

// Values returns all known values for TechnicalCueType. 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 (TechnicalCueType) Values() []TechnicalCueType {
	return []TechnicalCueType{
		"ColorBars",
		"EndCredits",
		"BlackFrames",
		"OpeningCredits",
		"StudioLogo",
		"Slate",
		"Content",
	}
}

type TextTypes string

// Enum values for TextTypes
const (
	TextTypesLine TextTypes = "LINE"
	TextTypesWord TextTypes = "WORD"
)

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

type UnsearchedFaceReason string

// Enum values for UnsearchedFaceReason
const (
	UnsearchedFaceReasonFaceNotLargest   UnsearchedFaceReason = "FACE_NOT_LARGEST"
	UnsearchedFaceReasonExceedsMaxFaces  UnsearchedFaceReason = "EXCEEDS_MAX_FACES"
	UnsearchedFaceReasonExtremePose      UnsearchedFaceReason = "EXTREME_POSE"
	UnsearchedFaceReasonLowBrightness    UnsearchedFaceReason = "LOW_BRIGHTNESS"
	UnsearchedFaceReasonLowSharpness     UnsearchedFaceReason = "LOW_SHARPNESS"
	UnsearchedFaceReasonLowConfidence    UnsearchedFaceReason = "LOW_CONFIDENCE"
	UnsearchedFaceReasonSmallBoundingBox UnsearchedFaceReason = "SMALL_BOUNDING_BOX"
	UnsearchedFaceReasonLowFaceQuality   UnsearchedFaceReason = "LOW_FACE_QUALITY"
)

// Values returns all known values for UnsearchedFaceReason. 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 (UnsearchedFaceReason) Values() []UnsearchedFaceReason {
	return []UnsearchedFaceReason{
		"FACE_NOT_LARGEST",
		"EXCEEDS_MAX_FACES",
		"EXTREME_POSE",
		"LOW_BRIGHTNESS",
		"LOW_SHARPNESS",
		"LOW_CONFIDENCE",
		"SMALL_BOUNDING_BOX",
		"LOW_FACE_QUALITY",
	}
}

type UnsuccessfulFaceAssociationReason string

// Enum values for UnsuccessfulFaceAssociationReason
const (
	UnsuccessfulFaceAssociationReasonFaceNotFound               UnsuccessfulFaceAssociationReason = "FACE_NOT_FOUND"
	UnsuccessfulFaceAssociationReasonAssociatedToADifferentUser UnsuccessfulFaceAssociationReason = "ASSOCIATED_TO_A_DIFFERENT_USER"
	UnsuccessfulFaceAssociationReasonLowMatchConfidence         UnsuccessfulFaceAssociationReason = "LOW_MATCH_CONFIDENCE"
)

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

type UnsuccessfulFaceDeletionReason string

// Enum values for UnsuccessfulFaceDeletionReason
const (
	UnsuccessfulFaceDeletionReasonAssociatedToAnExistingUser UnsuccessfulFaceDeletionReason = "ASSOCIATED_TO_AN_EXISTING_USER"
	UnsuccessfulFaceDeletionReasonFaceNotFound               UnsuccessfulFaceDeletionReason = "FACE_NOT_FOUND"
)

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

type UnsuccessfulFaceDisassociationReason string

// Enum values for UnsuccessfulFaceDisassociationReason
const (
	UnsuccessfulFaceDisassociationReasonFaceNotFound               UnsuccessfulFaceDisassociationReason = "FACE_NOT_FOUND"
	UnsuccessfulFaceDisassociationReasonAssociatedToADifferentUser UnsuccessfulFaceDisassociationReason = "ASSOCIATED_TO_A_DIFFERENT_USER"
)

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

type UserStatus string

// Enum values for UserStatus
const (
	UserStatusActive   UserStatus = "ACTIVE"
	UserStatusUpdating UserStatus = "UPDATING"
	UserStatusCreating UserStatus = "CREATING"
	UserStatusCreated  UserStatus = "CREATED"
)

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

type VideoColorRange string

// Enum values for VideoColorRange
const (
	VideoColorRangeFull    VideoColorRange = "FULL"
	VideoColorRangeLimited VideoColorRange = "LIMITED"
)

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

type VideoJobStatus string

// Enum values for VideoJobStatus
const (
	VideoJobStatusInProgress VideoJobStatus = "IN_PROGRESS"
	VideoJobStatusSucceeded  VideoJobStatus = "SUCCEEDED"
	VideoJobStatusFailed     VideoJobStatus = "FAILED"
)

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