@aws-sdk/client-rekognition 3.301.0 → 3.303.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -89,11 +89,16 @@ export interface Asset {
89
89
  }
90
90
  /**
91
91
  * @public
92
+ * @enum
92
93
  */
93
- export declare enum Attribute {
94
- ALL = "ALL",
95
- DEFAULT = "DEFAULT"
96
- }
94
+ export declare const Attribute: {
95
+ readonly ALL: "ALL";
96
+ readonly DEFAULT: "DEFAULT";
97
+ };
98
+ /**
99
+ * @public
100
+ */
101
+ export type Attribute = (typeof Attribute)[keyof typeof Attribute];
97
102
  /**
98
103
  * @public
99
104
  * <p>Metadata information about an audio stream. An array of <code>AudioMetadata</code> objects
@@ -165,13 +170,18 @@ export interface BlackFrame {
165
170
  }
166
171
  /**
167
172
  * @public
173
+ * @enum
168
174
  */
169
- export declare enum BodyPart {
170
- FACE = "FACE",
171
- HEAD = "HEAD",
172
- LEFT_HAND = "LEFT_HAND",
173
- RIGHT_HAND = "RIGHT_HAND"
174
- }
175
+ export declare const BodyPart: {
176
+ readonly FACE: "FACE";
177
+ readonly HEAD: "HEAD";
178
+ readonly LEFT_HAND: "LEFT_HAND";
179
+ readonly RIGHT_HAND: "RIGHT_HAND";
180
+ };
181
+ /**
182
+ * @public
183
+ */
184
+ export type BodyPart = (typeof BodyPart)[keyof typeof BodyPart];
175
185
  /**
176
186
  * @public
177
187
  * <p>Identifies the bounding box around the label, face, text, object of interest, or
@@ -228,12 +238,17 @@ export interface CoversBodyPart {
228
238
  }
229
239
  /**
230
240
  * @public
241
+ * @enum
231
242
  */
232
- export declare enum ProtectiveEquipmentType {
233
- FACE_COVER = "FACE_COVER",
234
- HAND_COVER = "HAND_COVER",
235
- HEAD_COVER = "HEAD_COVER"
236
- }
243
+ export declare const ProtectiveEquipmentType: {
244
+ readonly FACE_COVER: "FACE_COVER";
245
+ readonly HAND_COVER: "HAND_COVER";
246
+ readonly HEAD_COVER: "HEAD_COVER";
247
+ };
248
+ /**
249
+ * @public
250
+ */
251
+ export type ProtectiveEquipmentType = (typeof ProtectiveEquipmentType)[keyof typeof ProtectiveEquipmentType];
237
252
  /**
238
253
  * @public
239
254
  * <p>Information about an item of Personal Protective Equipment (PPE) detected by
@@ -281,18 +296,23 @@ export interface ProtectiveEquipmentBodyPart {
281
296
  }
282
297
  /**
283
298
  * @public
299
+ * @enum
284
300
  */
285
- export declare enum EmotionName {
286
- ANGRY = "ANGRY",
287
- CALM = "CALM",
288
- CONFUSED = "CONFUSED",
289
- DISGUSTED = "DISGUSTED",
290
- FEAR = "FEAR",
291
- HAPPY = "HAPPY",
292
- SAD = "SAD",
293
- SURPRISED = "SURPRISED",
294
- UNKNOWN = "UNKNOWN"
295
- }
301
+ export declare const EmotionName: {
302
+ readonly ANGRY: "ANGRY";
303
+ readonly CALM: "CALM";
304
+ readonly CONFUSED: "CONFUSED";
305
+ readonly DISGUSTED: "DISGUSTED";
306
+ readonly FEAR: "FEAR";
307
+ readonly HAPPY: "HAPPY";
308
+ readonly SAD: "SAD";
309
+ readonly SURPRISED: "SURPRISED";
310
+ readonly UNKNOWN: "UNKNOWN";
311
+ };
312
+ /**
313
+ * @public
314
+ */
315
+ export type EmotionName = (typeof EmotionName)[keyof typeof EmotionName];
296
316
  /**
297
317
  * @public
298
318
  * <p>The emotions that appear to be expressed on the face, and the confidence level in the
@@ -313,39 +333,44 @@ export interface Emotion {
313
333
  }
314
334
  /**
315
335
  * @public
316
- */
317
- export declare enum LandmarkType {
318
- chinBottom = "chinBottom",
319
- eyeLeft = "eyeLeft",
320
- eyeRight = "eyeRight",
321
- leftEyeBrowLeft = "leftEyeBrowLeft",
322
- leftEyeBrowRight = "leftEyeBrowRight",
323
- leftEyeBrowUp = "leftEyeBrowUp",
324
- leftEyeDown = "leftEyeDown",
325
- leftEyeLeft = "leftEyeLeft",
326
- leftEyeRight = "leftEyeRight",
327
- leftEyeUp = "leftEyeUp",
328
- leftPupil = "leftPupil",
329
- midJawlineLeft = "midJawlineLeft",
330
- midJawlineRight = "midJawlineRight",
331
- mouthDown = "mouthDown",
332
- mouthLeft = "mouthLeft",
333
- mouthRight = "mouthRight",
334
- mouthUp = "mouthUp",
335
- nose = "nose",
336
- noseLeft = "noseLeft",
337
- noseRight = "noseRight",
338
- rightEyeBrowLeft = "rightEyeBrowLeft",
339
- rightEyeBrowRight = "rightEyeBrowRight",
340
- rightEyeBrowUp = "rightEyeBrowUp",
341
- rightEyeDown = "rightEyeDown",
342
- rightEyeLeft = "rightEyeLeft",
343
- rightEyeRight = "rightEyeRight",
344
- rightEyeUp = "rightEyeUp",
345
- rightPupil = "rightPupil",
346
- upperJawlineLeft = "upperJawlineLeft",
347
- upperJawlineRight = "upperJawlineRight"
348
- }
336
+ * @enum
337
+ */
338
+ export declare const LandmarkType: {
339
+ readonly chinBottom: "chinBottom";
340
+ readonly eyeLeft: "eyeLeft";
341
+ readonly eyeRight: "eyeRight";
342
+ readonly leftEyeBrowLeft: "leftEyeBrowLeft";
343
+ readonly leftEyeBrowRight: "leftEyeBrowRight";
344
+ readonly leftEyeBrowUp: "leftEyeBrowUp";
345
+ readonly leftEyeDown: "leftEyeDown";
346
+ readonly leftEyeLeft: "leftEyeLeft";
347
+ readonly leftEyeRight: "leftEyeRight";
348
+ readonly leftEyeUp: "leftEyeUp";
349
+ readonly leftPupil: "leftPupil";
350
+ readonly midJawlineLeft: "midJawlineLeft";
351
+ readonly midJawlineRight: "midJawlineRight";
352
+ readonly mouthDown: "mouthDown";
353
+ readonly mouthLeft: "mouthLeft";
354
+ readonly mouthRight: "mouthRight";
355
+ readonly mouthUp: "mouthUp";
356
+ readonly nose: "nose";
357
+ readonly noseLeft: "noseLeft";
358
+ readonly noseRight: "noseRight";
359
+ readonly rightEyeBrowLeft: "rightEyeBrowLeft";
360
+ readonly rightEyeBrowRight: "rightEyeBrowRight";
361
+ readonly rightEyeBrowUp: "rightEyeBrowUp";
362
+ readonly rightEyeDown: "rightEyeDown";
363
+ readonly rightEyeLeft: "rightEyeLeft";
364
+ readonly rightEyeRight: "rightEyeRight";
365
+ readonly rightEyeUp: "rightEyeUp";
366
+ readonly rightPupil: "rightPupil";
367
+ readonly upperJawlineLeft: "upperJawlineLeft";
368
+ readonly upperJawlineRight: "upperJawlineRight";
369
+ };
370
+ /**
371
+ * @public
372
+ */
373
+ export type LandmarkType = (typeof LandmarkType)[keyof typeof LandmarkType];
349
374
  /**
350
375
  * @public
351
376
  * <p>Indicates the location of the landmark on the face.</p>
@@ -458,13 +483,18 @@ export interface ComparedFace {
458
483
  }
459
484
  /**
460
485
  * @public
486
+ * @enum
461
487
  */
462
- export declare enum KnownGenderType {
463
- Female = "Female",
464
- Male = "Male",
465
- Nonbinary = "Nonbinary",
466
- Unlisted = "Unlisted"
467
- }
488
+ export declare const KnownGenderType: {
489
+ readonly Female: "Female";
490
+ readonly Male: "Male";
491
+ readonly Nonbinary: "Nonbinary";
492
+ readonly Unlisted: "Unlisted";
493
+ };
494
+ /**
495
+ * @public
496
+ */
497
+ export type KnownGenderType = (typeof KnownGenderType)[keyof typeof KnownGenderType];
468
498
  /**
469
499
  * @public
470
500
  * <p>The known gender identity for the celebrity that matches the provided ID. The known
@@ -542,11 +572,16 @@ export interface EyeOpen {
542
572
  }
543
573
  /**
544
574
  * @public
575
+ * @enum
545
576
  */
546
- export declare enum GenderType {
547
- Female = "Female",
548
- Male = "Male"
549
- }
577
+ export declare const GenderType: {
578
+ readonly Female: "Female";
579
+ readonly Male: "Male";
580
+ };
581
+ /**
582
+ * @public
583
+ */
584
+ export type GenderType = (typeof GenderType)[keyof typeof GenderType];
550
585
  /**
551
586
  * @public
552
587
  * <p>The predicted gender of a detected face.
@@ -776,11 +811,16 @@ export interface CelebrityRecognition {
776
811
  }
777
812
  /**
778
813
  * @public
814
+ * @enum
779
815
  */
780
- export declare enum CelebrityRecognitionSortBy {
781
- ID = "ID",
782
- TIMESTAMP = "TIMESTAMP"
783
- }
816
+ export declare const CelebrityRecognitionSortBy: {
817
+ readonly ID: "ID";
818
+ readonly TIMESTAMP: "TIMESTAMP";
819
+ };
820
+ /**
821
+ * @public
822
+ */
823
+ export type CelebrityRecognitionSortBy = (typeof CelebrityRecognitionSortBy)[keyof typeof CelebrityRecognitionSortBy];
784
824
  /**
785
825
  * @public
786
826
  * <p>Type that describes the face Amazon Rekognition chose to compare with the faces in the target.
@@ -800,14 +840,19 @@ export interface ComparedSourceImageFace {
800
840
  }
801
841
  /**
802
842
  * @public
843
+ * @enum
803
844
  */
804
- export declare enum QualityFilter {
805
- AUTO = "AUTO",
806
- HIGH = "HIGH",
807
- LOW = "LOW",
808
- MEDIUM = "MEDIUM",
809
- NONE = "NONE"
810
- }
845
+ export declare const QualityFilter: {
846
+ readonly AUTO: "AUTO";
847
+ readonly HIGH: "HIGH";
848
+ readonly LOW: "LOW";
849
+ readonly MEDIUM: "MEDIUM";
850
+ readonly NONE: "NONE";
851
+ };
852
+ /**
853
+ * @public
854
+ */
855
+ export type QualityFilter = (typeof QualityFilter)[keyof typeof QualityFilter];
811
856
  /**
812
857
  * @public
813
858
  * <p>Provides the input image either as bytes or an S3 object.</p>
@@ -902,13 +947,18 @@ export interface CompareFacesMatch {
902
947
  }
903
948
  /**
904
949
  * @public
950
+ * @enum
905
951
  */
906
- export declare enum OrientationCorrection {
907
- ROTATE_0 = "ROTATE_0",
908
- ROTATE_180 = "ROTATE_180",
909
- ROTATE_270 = "ROTATE_270",
910
- ROTATE_90 = "ROTATE_90"
911
- }
952
+ export declare const OrientationCorrection: {
953
+ readonly ROTATE_0: "ROTATE_0";
954
+ readonly ROTATE_180: "ROTATE_180";
955
+ readonly ROTATE_270: "ROTATE_270";
956
+ readonly ROTATE_90: "ROTATE_90";
957
+ };
958
+ /**
959
+ * @public
960
+ */
961
+ export type OrientationCorrection = (typeof OrientationCorrection)[keyof typeof OrientationCorrection];
912
962
  /**
913
963
  * @public
914
964
  */
@@ -1131,11 +1181,16 @@ export interface ConnectedHomeSettingsForUpdate {
1131
1181
  }
1132
1182
  /**
1133
1183
  * @public
1184
+ * @enum
1134
1185
  */
1135
- export declare enum ContentClassifier {
1136
- FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
1137
- FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation"
1138
- }
1186
+ export declare const ContentClassifier: {
1187
+ readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
1188
+ readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation";
1189
+ };
1190
+ /**
1191
+ * @public
1192
+ */
1193
+ export type ContentClassifier = (typeof ContentClassifier)[keyof typeof ContentClassifier];
1139
1194
  /**
1140
1195
  * @public
1141
1196
  * <p>Provides information about a single type of inappropriate, unwanted, or
@@ -1179,11 +1234,16 @@ export interface ContentModerationDetection {
1179
1234
  }
1180
1235
  /**
1181
1236
  * @public
1237
+ * @enum
1182
1238
  */
1183
- export declare enum ContentModerationSortBy {
1184
- NAME = "NAME",
1185
- TIMESTAMP = "TIMESTAMP"
1186
- }
1239
+ export declare const ContentModerationSortBy: {
1240
+ readonly NAME: "NAME";
1241
+ readonly TIMESTAMP: "TIMESTAMP";
1242
+ };
1243
+ /**
1244
+ * @public
1245
+ */
1246
+ export type ContentModerationSortBy = (typeof ContentModerationSortBy)[keyof typeof ContentModerationSortBy];
1187
1247
  /**
1188
1248
  * @public
1189
1249
  * <p>The S3 bucket and folder location where training output is placed.</p>
@@ -1415,11 +1475,16 @@ export interface DatasetSource {
1415
1475
  }
1416
1476
  /**
1417
1477
  * @public
1478
+ * @enum
1418
1479
  */
1419
- export declare enum DatasetType {
1420
- TEST = "TEST",
1421
- TRAIN = "TRAIN"
1422
- }
1480
+ export declare const DatasetType: {
1481
+ readonly TEST: "TEST";
1482
+ readonly TRAIN: "TRAIN";
1483
+ };
1484
+ /**
1485
+ * @public
1486
+ */
1487
+ export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
1423
1488
  /**
1424
1489
  * @public
1425
1490
  */
@@ -1927,24 +1992,34 @@ export interface DatasetStats {
1927
1992
  }
1928
1993
  /**
1929
1994
  * @public
1995
+ * @enum
1930
1996
  */
1931
- export declare enum DatasetStatus {
1932
- CREATE_COMPLETE = "CREATE_COMPLETE",
1933
- CREATE_FAILED = "CREATE_FAILED",
1934
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
1935
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
1936
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
1937
- UPDATE_FAILED = "UPDATE_FAILED",
1938
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
1939
- }
1997
+ export declare const DatasetStatus: {
1998
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
1999
+ readonly CREATE_FAILED: "CREATE_FAILED";
2000
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2001
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
2002
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
2003
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
2004
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
2005
+ };
1940
2006
  /**
1941
2007
  * @public
1942
2008
  */
1943
- export declare enum DatasetStatusMessageCode {
1944
- CLIENT_ERROR = "CLIENT_ERROR",
1945
- SERVICE_ERROR = "SERVICE_ERROR",
1946
- SUCCESS = "SUCCESS"
1947
- }
2009
+ export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
2010
+ /**
2011
+ * @public
2012
+ * @enum
2013
+ */
2014
+ export declare const DatasetStatusMessageCode: {
2015
+ readonly CLIENT_ERROR: "CLIENT_ERROR";
2016
+ readonly SERVICE_ERROR: "SERVICE_ERROR";
2017
+ readonly SUCCESS: "SUCCESS";
2018
+ };
2019
+ /**
2020
+ * @public
2021
+ */
2022
+ export type DatasetStatusMessageCode = (typeof DatasetStatusMessageCode)[keyof typeof DatasetStatusMessageCode];
1948
2023
  /**
1949
2024
  * @public
1950
2025
  * <p>
@@ -2147,12 +2222,17 @@ export interface DeleteProjectRequest {
2147
2222
  }
2148
2223
  /**
2149
2224
  * @public
2225
+ * @enum
2150
2226
  */
2151
- export declare enum ProjectStatus {
2152
- CREATED = "CREATED",
2153
- CREATING = "CREATING",
2154
- DELETING = "DELETING"
2155
- }
2227
+ export declare const ProjectStatus: {
2228
+ readonly CREATED: "CREATED";
2229
+ readonly CREATING: "CREATING";
2230
+ readonly DELETING: "DELETING";
2231
+ };
2232
+ /**
2233
+ * @public
2234
+ */
2235
+ export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
2156
2236
  /**
2157
2237
  * @public
2158
2238
  */
@@ -2213,21 +2293,26 @@ export interface DeleteProjectVersionRequest {
2213
2293
  }
2214
2294
  /**
2215
2295
  * @public
2296
+ * @enum
2216
2297
  */
2217
- export declare enum ProjectVersionStatus {
2218
- COPYING_COMPLETED = "COPYING_COMPLETED",
2219
- COPYING_FAILED = "COPYING_FAILED",
2220
- COPYING_IN_PROGRESS = "COPYING_IN_PROGRESS",
2221
- DELETING = "DELETING",
2222
- FAILED = "FAILED",
2223
- RUNNING = "RUNNING",
2224
- STARTING = "STARTING",
2225
- STOPPED = "STOPPED",
2226
- STOPPING = "STOPPING",
2227
- TRAINING_COMPLETED = "TRAINING_COMPLETED",
2228
- TRAINING_FAILED = "TRAINING_FAILED",
2229
- TRAINING_IN_PROGRESS = "TRAINING_IN_PROGRESS"
2230
- }
2298
+ export declare const ProjectVersionStatus: {
2299
+ readonly COPYING_COMPLETED: "COPYING_COMPLETED";
2300
+ readonly COPYING_FAILED: "COPYING_FAILED";
2301
+ readonly COPYING_IN_PROGRESS: "COPYING_IN_PROGRESS";
2302
+ readonly DELETING: "DELETING";
2303
+ readonly FAILED: "FAILED";
2304
+ readonly RUNNING: "RUNNING";
2305
+ readonly STARTING: "STARTING";
2306
+ readonly STOPPED: "STOPPED";
2307
+ readonly STOPPING: "STOPPING";
2308
+ readonly TRAINING_COMPLETED: "TRAINING_COMPLETED";
2309
+ readonly TRAINING_FAILED: "TRAINING_FAILED";
2310
+ readonly TRAINING_IN_PROGRESS: "TRAINING_IN_PROGRESS";
2311
+ };
2312
+ /**
2313
+ * @public
2314
+ */
2315
+ export type ProjectVersionStatus = (typeof ProjectVersionStatus)[keyof typeof ProjectVersionStatus];
2231
2316
  /**
2232
2317
  * @public
2233
2318
  */
@@ -2604,15 +2689,20 @@ export interface DescribeStreamProcessorRequest {
2604
2689
  }
2605
2690
  /**
2606
2691
  * @public
2692
+ * @enum
2607
2693
  */
2608
- export declare enum StreamProcessorStatus {
2609
- FAILED = "FAILED",
2610
- RUNNING = "RUNNING",
2611
- STARTING = "STARTING",
2612
- STOPPED = "STOPPED",
2613
- STOPPING = "STOPPING",
2614
- UPDATING = "UPDATING"
2615
- }
2694
+ export declare const StreamProcessorStatus: {
2695
+ readonly FAILED: "FAILED";
2696
+ readonly RUNNING: "RUNNING";
2697
+ readonly STARTING: "STARTING";
2698
+ readonly STOPPED: "STOPPED";
2699
+ readonly STOPPING: "STOPPING";
2700
+ readonly UPDATING: "UPDATING";
2701
+ };
2702
+ /**
2703
+ * @public
2704
+ */
2705
+ export type StreamProcessorStatus = (typeof StreamProcessorStatus)[keyof typeof StreamProcessorStatus];
2616
2706
  /**
2617
2707
  * @public
2618
2708
  */
@@ -2834,11 +2924,16 @@ export interface DetectionFilter {
2834
2924
  }
2835
2925
  /**
2836
2926
  * @public
2927
+ * @enum
2837
2928
  */
2838
- export declare enum DetectLabelsFeatureName {
2839
- GENERAL_LABELS = "GENERAL_LABELS",
2840
- IMAGE_PROPERTIES = "IMAGE_PROPERTIES"
2841
- }
2929
+ export declare const DetectLabelsFeatureName: {
2930
+ readonly GENERAL_LABELS: "GENERAL_LABELS";
2931
+ readonly IMAGE_PROPERTIES: "IMAGE_PROPERTIES";
2932
+ };
2933
+ /**
2934
+ * @public
2935
+ */
2936
+ export type DetectLabelsFeatureName = (typeof DetectLabelsFeatureName)[keyof typeof DetectLabelsFeatureName];
2842
2937
  /**
2843
2938
  * @public
2844
2939
  * <p>Contains filters for the object labels returned by DetectLabels. Filters can be inclusive,
@@ -3444,11 +3539,16 @@ export interface DetectTextRequest {
3444
3539
  }
3445
3540
  /**
3446
3541
  * @public
3542
+ * @enum
3447
3543
  */
3448
- export declare enum TextTypes {
3449
- LINE = "LINE",
3450
- WORD = "WORD"
3451
- }
3544
+ export declare const TextTypes: {
3545
+ readonly LINE: "LINE";
3546
+ readonly WORD: "WORD";
3547
+ };
3548
+ /**
3549
+ * @public
3550
+ */
3551
+ export type TextTypes = (typeof TextTypes)[keyof typeof TextTypes];
3452
3552
  /**
3453
3553
  * @public
3454
3554
  * <p>Information about a word or line of text detected by <a>DetectText</a>.</p>
@@ -3571,11 +3671,16 @@ export interface Face {
3571
3671
  }
3572
3672
  /**
3573
3673
  * @public
3674
+ * @enum
3574
3675
  */
3575
- export declare enum FaceAttributes {
3576
- ALL = "ALL",
3577
- DEFAULT = "DEFAULT"
3578
- }
3676
+ export declare const FaceAttributes: {
3677
+ readonly ALL: "ALL";
3678
+ readonly DEFAULT: "DEFAULT";
3679
+ };
3680
+ /**
3681
+ * @public
3682
+ */
3683
+ export type FaceAttributes = (typeof FaceAttributes)[keyof typeof FaceAttributes];
3579
3684
  /**
3580
3685
  * @public
3581
3686
  * <p>Information about a face detected in a video analysis request and the time the face was detected in the video. </p>
@@ -3625,11 +3730,16 @@ export interface FaceRecord {
3625
3730
  }
3626
3731
  /**
3627
3732
  * @public
3733
+ * @enum
3628
3734
  */
3629
- export declare enum FaceSearchSortBy {
3630
- INDEX = "INDEX",
3631
- TIMESTAMP = "TIMESTAMP"
3632
- }
3735
+ export declare const FaceSearchSortBy: {
3736
+ readonly INDEX: "INDEX";
3737
+ readonly TIMESTAMP: "TIMESTAMP";
3738
+ };
3739
+ /**
3740
+ * @public
3741
+ */
3742
+ export type FaceSearchSortBy = (typeof FaceSearchSortBy)[keyof typeof FaceSearchSortBy];
3633
3743
  /**
3634
3744
  * @public
3635
3745
  */
@@ -3685,19 +3795,29 @@ export interface GetCelebrityRecognitionRequest {
3685
3795
  }
3686
3796
  /**
3687
3797
  * @public
3798
+ * @enum
3688
3799
  */
3689
- export declare enum VideoJobStatus {
3690
- FAILED = "FAILED",
3691
- IN_PROGRESS = "IN_PROGRESS",
3692
- SUCCEEDED = "SUCCEEDED"
3693
- }
3800
+ export declare const VideoJobStatus: {
3801
+ readonly FAILED: "FAILED";
3802
+ readonly IN_PROGRESS: "IN_PROGRESS";
3803
+ readonly SUCCEEDED: "SUCCEEDED";
3804
+ };
3694
3805
  /**
3695
3806
  * @public
3696
3807
  */
3697
- export declare enum VideoColorRange {
3698
- FULL = "FULL",
3699
- LIMITED = "LIMITED"
3700
- }
3808
+ export type VideoJobStatus = (typeof VideoJobStatus)[keyof typeof VideoJobStatus];
3809
+ /**
3810
+ * @public
3811
+ * @enum
3812
+ */
3813
+ export declare const VideoColorRange: {
3814
+ readonly FULL: "FULL";
3815
+ readonly LIMITED: "LIMITED";
3816
+ };
3817
+ /**
3818
+ * @public
3819
+ */
3820
+ export type VideoColorRange = (typeof VideoColorRange)[keyof typeof VideoColorRange];
3701
3821
  /**
3702
3822
  * @public
3703
3823
  * <p>Information about a video that Amazon Rekognition analyzed. <code>Videometadata</code> is returned in
@@ -3970,18 +4090,28 @@ export interface GetFaceSearchResponse {
3970
4090
  }
3971
4091
  /**
3972
4092
  * @public
4093
+ * @enum
3973
4094
  */
3974
- export declare enum LabelDetectionAggregateBy {
3975
- SEGMENTS = "SEGMENTS",
3976
- TIMESTAMPS = "TIMESTAMPS"
3977
- }
4095
+ export declare const LabelDetectionAggregateBy: {
4096
+ readonly SEGMENTS: "SEGMENTS";
4097
+ readonly TIMESTAMPS: "TIMESTAMPS";
4098
+ };
3978
4099
  /**
3979
4100
  * @public
3980
4101
  */
3981
- export declare enum LabelDetectionSortBy {
3982
- NAME = "NAME",
3983
- TIMESTAMP = "TIMESTAMP"
3984
- }
4102
+ export type LabelDetectionAggregateBy = (typeof LabelDetectionAggregateBy)[keyof typeof LabelDetectionAggregateBy];
4103
+ /**
4104
+ * @public
4105
+ * @enum
4106
+ */
4107
+ export declare const LabelDetectionSortBy: {
4108
+ readonly NAME: "NAME";
4109
+ readonly TIMESTAMP: "TIMESTAMP";
4110
+ };
4111
+ /**
4112
+ * @public
4113
+ */
4114
+ export type LabelDetectionSortBy = (typeof LabelDetectionSortBy)[keyof typeof LabelDetectionSortBy];
3985
4115
  /**
3986
4116
  * @public
3987
4117
  */
@@ -4076,11 +4206,16 @@ export interface GetLabelDetectionResponse {
4076
4206
  }
4077
4207
  /**
4078
4208
  * @public
4209
+ * @enum
4079
4210
  */
4080
- export declare enum PersonTrackingSortBy {
4081
- INDEX = "INDEX",
4082
- TIMESTAMP = "TIMESTAMP"
4083
- }
4211
+ export declare const PersonTrackingSortBy: {
4212
+ readonly INDEX: "INDEX";
4213
+ readonly TIMESTAMP: "TIMESTAMP";
4214
+ };
4215
+ /**
4216
+ * @public
4217
+ */
4218
+ export type PersonTrackingSortBy = (typeof PersonTrackingSortBy)[keyof typeof PersonTrackingSortBy];
4084
4219
  /**
4085
4220
  * @public
4086
4221
  */
@@ -4190,16 +4325,21 @@ export interface ShotSegment {
4190
4325
  }
4191
4326
  /**
4192
4327
  * @public
4328
+ * @enum
4193
4329
  */
4194
- export declare enum TechnicalCueType {
4195
- BLACK_FRAMES = "BlackFrames",
4196
- COLOR_BARS = "ColorBars",
4197
- CONTENT = "Content",
4198
- END_CREDITS = "EndCredits",
4199
- OPENING_CREDITS = "OpeningCredits",
4200
- SLATE = "Slate",
4201
- STUDIO_LOGO = "StudioLogo"
4202
- }
4330
+ export declare const TechnicalCueType: {
4331
+ readonly BLACK_FRAMES: "BlackFrames";
4332
+ readonly COLOR_BARS: "ColorBars";
4333
+ readonly CONTENT: "Content";
4334
+ readonly END_CREDITS: "EndCredits";
4335
+ readonly OPENING_CREDITS: "OpeningCredits";
4336
+ readonly SLATE: "Slate";
4337
+ readonly STUDIO_LOGO: "StudioLogo";
4338
+ };
4339
+ /**
4340
+ * @public
4341
+ */
4342
+ export type TechnicalCueType = (typeof TechnicalCueType)[keyof typeof TechnicalCueType];
4203
4343
  /**
4204
4344
  * @public
4205
4345
  * <p>Information about a technical cue segment. For more information, see <a>SegmentDetection</a>.</p>
@@ -4216,11 +4356,16 @@ export interface TechnicalCueSegment {
4216
4356
  }
4217
4357
  /**
4218
4358
  * @public
4359
+ * @enum
4219
4360
  */
4220
- export declare enum SegmentType {
4221
- SHOT = "SHOT",
4222
- TECHNICAL_CUE = "TECHNICAL_CUE"
4223
- }
4361
+ export declare const SegmentType: {
4362
+ readonly SHOT: "SHOT";
4363
+ readonly TECHNICAL_CUE: "TECHNICAL_CUE";
4364
+ };
4365
+ /**
4366
+ * @public
4367
+ */
4368
+ export type SegmentType = (typeof SegmentType)[keyof typeof SegmentType];
4224
4369
  /**
4225
4370
  * @public
4226
4371
  * <p>A technical cue or shot detection segment detected in a video. An array
@@ -4504,16 +4649,21 @@ export interface IndexFacesRequest {
4504
4649
  }
4505
4650
  /**
4506
4651
  * @public
4652
+ * @enum
4507
4653
  */
4508
- export declare enum Reason {
4509
- EXCEEDS_MAX_FACES = "EXCEEDS_MAX_FACES",
4510
- EXTREME_POSE = "EXTREME_POSE",
4511
- LOW_BRIGHTNESS = "LOW_BRIGHTNESS",
4512
- LOW_CONFIDENCE = "LOW_CONFIDENCE",
4513
- LOW_FACE_QUALITY = "LOW_FACE_QUALITY",
4514
- LOW_SHARPNESS = "LOW_SHARPNESS",
4515
- SMALL_BOUNDING_BOX = "SMALL_BOUNDING_BOX"
4516
- }
4654
+ export declare const Reason: {
4655
+ readonly EXCEEDS_MAX_FACES: "EXCEEDS_MAX_FACES";
4656
+ readonly EXTREME_POSE: "EXTREME_POSE";
4657
+ readonly LOW_BRIGHTNESS: "LOW_BRIGHTNESS";
4658
+ readonly LOW_CONFIDENCE: "LOW_CONFIDENCE";
4659
+ readonly LOW_FACE_QUALITY: "LOW_FACE_QUALITY";
4660
+ readonly LOW_SHARPNESS: "LOW_SHARPNESS";
4661
+ readonly SMALL_BOUNDING_BOX: "SMALL_BOUNDING_BOX";
4662
+ };
4663
+ /**
4664
+ * @public
4665
+ */
4666
+ export type Reason = (typeof Reason)[keyof typeof Reason];
4517
4667
  /**
4518
4668
  * @public
4519
4669
  * <p>A face that <a>IndexFaces</a> detected, but didn't index. Use the
@@ -4623,10 +4773,15 @@ export interface KinesisVideoStreamStartSelector {
4623
4773
  }
4624
4774
  /**
4625
4775
  * @public
4776
+ * @enum
4626
4777
  */
4627
- export declare enum LabelDetectionFeatureName {
4628
- GENERAL_LABELS = "GENERAL_LABELS"
4629
- }
4778
+ export declare const LabelDetectionFeatureName: {
4779
+ readonly GENERAL_LABELS: "GENERAL_LABELS";
4780
+ };
4781
+ /**
4782
+ * @public
4783
+ */
4784
+ export type LabelDetectionFeatureName = (typeof LabelDetectionFeatureName)[keyof typeof LabelDetectionFeatureName];
4630
4785
  /**
4631
4786
  * @public
4632
4787
  * <p>Contains the specified filters that should be applied to a list of returned GENERAL_LABELS.</p>
@@ -5817,11 +5972,16 @@ export interface UpdateDatasetEntriesResponse {
5817
5972
  }
5818
5973
  /**
5819
5974
  * @public
5975
+ * @enum
5820
5976
  */
5821
- export declare enum StreamProcessorParameterToDelete {
5822
- ConnectedHomeMinConfidence = "ConnectedHomeMinConfidence",
5823
- RegionsOfInterest = "RegionsOfInterest"
5824
- }
5977
+ export declare const StreamProcessorParameterToDelete: {
5978
+ readonly ConnectedHomeMinConfidence: "ConnectedHomeMinConfidence";
5979
+ readonly RegionsOfInterest: "RegionsOfInterest";
5980
+ };
5981
+ /**
5982
+ * @public
5983
+ */
5984
+ export type StreamProcessorParameterToDelete = (typeof StreamProcessorParameterToDelete)[keyof typeof StreamProcessorParameterToDelete];
5825
5985
  /**
5826
5986
  * @public
5827
5987
  * <p>