@aws-sdk/client-rekognition 3.934.0 → 3.935.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.
- package/dist-cjs/index.js +306 -306
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +288 -0
- package/dist-es/models/errors.js +421 -0
- package/dist-es/models/models_0.js +1 -659
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/PutProjectPolicyCommand.d.ts +1 -1
- package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +1 -1
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +1 -1
- package/dist-types/commands/SearchFacesCommand.d.ts +1 -1
- package/dist-types/commands/SearchUsersByImageCommand.d.ts +1 -1
- package/dist-types/commands/SearchUsersCommand.d.ts +1 -1
- package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +1 -1
- package/dist-types/commands/StartContentModerationCommand.d.ts +1 -1
- package/dist-types/commands/StartFaceDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartFaceSearchCommand.d.ts +1 -1
- package/dist-types/commands/StartLabelDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartMediaAnalysisJobCommand.d.ts +1 -1
- package/dist-types/commands/StartPersonTrackingCommand.d.ts +1 -1
- package/dist-types/commands/StartProjectVersionCommand.d.ts +1 -1
- package/dist-types/commands/StartSegmentDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/StartTextDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StopProjectVersionCommand.d.ts +1 -1
- package/dist-types/commands/StopStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +640 -0
- package/dist-types/models/errors.d.ts +471 -0
- package/dist-types/models/models_0.d.ts +1358 -1041
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutProjectPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RecognizeCelebritiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchFacesByImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchFacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchUsersByImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCelebrityRecognitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartContentModerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartFaceDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartFaceSearchCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartLabelDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMediaAnalysisJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPersonTrackingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartProjectVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartSegmentDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartStreamProcessorCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTextDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopProjectVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopStreamProcessorCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDatasetEntriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateStreamProcessorCommand.d.ts +1 -1
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +362 -0
- package/dist-types/ts3.4/models/errors.d.ts +251 -0
- package/dist-types/ts3.4/models/models_0.d.ts +319 -574
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-es/models/models_1.js +0 -51
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/models/models_1.d.ts +0 -1429
- package/dist-types/ts3.4/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/models_1.d.ts +0 -343
|
@@ -0,0 +1,640 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const UnsuccessfulFaceAssociationReason: {
|
|
6
|
+
readonly ASSOCIATED_TO_A_DIFFERENT_USER: "ASSOCIATED_TO_A_DIFFERENT_USER";
|
|
7
|
+
readonly FACE_NOT_FOUND: "FACE_NOT_FOUND";
|
|
8
|
+
readonly LOW_MATCH_CONFIDENCE: "LOW_MATCH_CONFIDENCE";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type UnsuccessfulFaceAssociationReason = (typeof UnsuccessfulFaceAssociationReason)[keyof typeof UnsuccessfulFaceAssociationReason];
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* @enum
|
|
17
|
+
*/
|
|
18
|
+
export declare const UserStatus: {
|
|
19
|
+
readonly ACTIVE: "ACTIVE";
|
|
20
|
+
readonly CREATED: "CREATED";
|
|
21
|
+
readonly CREATING: "CREATING";
|
|
22
|
+
readonly UPDATING: "UPDATING";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const Attribute: {
|
|
33
|
+
readonly AGE_RANGE: "AGE_RANGE";
|
|
34
|
+
readonly ALL: "ALL";
|
|
35
|
+
readonly BEARD: "BEARD";
|
|
36
|
+
readonly DEFAULT: "DEFAULT";
|
|
37
|
+
readonly EMOTIONS: "EMOTIONS";
|
|
38
|
+
readonly EYEGLASSES: "EYEGLASSES";
|
|
39
|
+
readonly EYES_OPEN: "EYES_OPEN";
|
|
40
|
+
readonly EYE_DIRECTION: "EYE_DIRECTION";
|
|
41
|
+
readonly FACE_OCCLUDED: "FACE_OCCLUDED";
|
|
42
|
+
readonly GENDER: "GENDER";
|
|
43
|
+
readonly MOUTH_OPEN: "MOUTH_OPEN";
|
|
44
|
+
readonly MUSTACHE: "MUSTACHE";
|
|
45
|
+
readonly SMILE: "SMILE";
|
|
46
|
+
readonly SUNGLASSES: "SUNGLASSES";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type Attribute = (typeof Attribute)[keyof typeof Attribute];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const BodyPart: {
|
|
57
|
+
readonly FACE: "FACE";
|
|
58
|
+
readonly HEAD: "HEAD";
|
|
59
|
+
readonly LEFT_HAND: "LEFT_HAND";
|
|
60
|
+
readonly RIGHT_HAND: "RIGHT_HAND";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type BodyPart = (typeof BodyPart)[keyof typeof BodyPart];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @enum
|
|
69
|
+
*/
|
|
70
|
+
export declare const ProtectiveEquipmentType: {
|
|
71
|
+
readonly FACE_COVER: "FACE_COVER";
|
|
72
|
+
readonly HAND_COVER: "HAND_COVER";
|
|
73
|
+
readonly HEAD_COVER: "HEAD_COVER";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type ProtectiveEquipmentType = (typeof ProtectiveEquipmentType)[keyof typeof ProtectiveEquipmentType];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const EmotionName: {
|
|
84
|
+
readonly ANGRY: "ANGRY";
|
|
85
|
+
readonly CALM: "CALM";
|
|
86
|
+
readonly CONFUSED: "CONFUSED";
|
|
87
|
+
readonly DISGUSTED: "DISGUSTED";
|
|
88
|
+
readonly FEAR: "FEAR";
|
|
89
|
+
readonly HAPPY: "HAPPY";
|
|
90
|
+
readonly SAD: "SAD";
|
|
91
|
+
readonly SURPRISED: "SURPRISED";
|
|
92
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type EmotionName = (typeof EmotionName)[keyof typeof EmotionName];
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const LandmarkType: {
|
|
103
|
+
readonly chinBottom: "chinBottom";
|
|
104
|
+
readonly eyeLeft: "eyeLeft";
|
|
105
|
+
readonly eyeRight: "eyeRight";
|
|
106
|
+
readonly leftEyeBrowLeft: "leftEyeBrowLeft";
|
|
107
|
+
readonly leftEyeBrowRight: "leftEyeBrowRight";
|
|
108
|
+
readonly leftEyeBrowUp: "leftEyeBrowUp";
|
|
109
|
+
readonly leftEyeDown: "leftEyeDown";
|
|
110
|
+
readonly leftEyeLeft: "leftEyeLeft";
|
|
111
|
+
readonly leftEyeRight: "leftEyeRight";
|
|
112
|
+
readonly leftEyeUp: "leftEyeUp";
|
|
113
|
+
readonly leftPupil: "leftPupil";
|
|
114
|
+
readonly midJawlineLeft: "midJawlineLeft";
|
|
115
|
+
readonly midJawlineRight: "midJawlineRight";
|
|
116
|
+
readonly mouthDown: "mouthDown";
|
|
117
|
+
readonly mouthLeft: "mouthLeft";
|
|
118
|
+
readonly mouthRight: "mouthRight";
|
|
119
|
+
readonly mouthUp: "mouthUp";
|
|
120
|
+
readonly nose: "nose";
|
|
121
|
+
readonly noseLeft: "noseLeft";
|
|
122
|
+
readonly noseRight: "noseRight";
|
|
123
|
+
readonly rightEyeBrowLeft: "rightEyeBrowLeft";
|
|
124
|
+
readonly rightEyeBrowRight: "rightEyeBrowRight";
|
|
125
|
+
readonly rightEyeBrowUp: "rightEyeBrowUp";
|
|
126
|
+
readonly rightEyeDown: "rightEyeDown";
|
|
127
|
+
readonly rightEyeLeft: "rightEyeLeft";
|
|
128
|
+
readonly rightEyeRight: "rightEyeRight";
|
|
129
|
+
readonly rightEyeUp: "rightEyeUp";
|
|
130
|
+
readonly rightPupil: "rightPupil";
|
|
131
|
+
readonly upperJawlineLeft: "upperJawlineLeft";
|
|
132
|
+
readonly upperJawlineRight: "upperJawlineRight";
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export type LandmarkType = (typeof LandmarkType)[keyof typeof LandmarkType];
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* @enum
|
|
141
|
+
*/
|
|
142
|
+
export declare const KnownGenderType: {
|
|
143
|
+
readonly Female: "Female";
|
|
144
|
+
readonly Male: "Male";
|
|
145
|
+
readonly Nonbinary: "Nonbinary";
|
|
146
|
+
readonly Unlisted: "Unlisted";
|
|
147
|
+
};
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export type KnownGenderType = (typeof KnownGenderType)[keyof typeof KnownGenderType];
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
* @enum
|
|
155
|
+
*/
|
|
156
|
+
export declare const GenderType: {
|
|
157
|
+
readonly Female: "Female";
|
|
158
|
+
readonly Male: "Male";
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export type GenderType = (typeof GenderType)[keyof typeof GenderType];
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
* @enum
|
|
167
|
+
*/
|
|
168
|
+
export declare const CelebrityRecognitionSortBy: {
|
|
169
|
+
readonly ID: "ID";
|
|
170
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
171
|
+
};
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
export type CelebrityRecognitionSortBy = (typeof CelebrityRecognitionSortBy)[keyof typeof CelebrityRecognitionSortBy];
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
* @enum
|
|
179
|
+
*/
|
|
180
|
+
export declare const ChallengeType: {
|
|
181
|
+
readonly FACE_MOVEMENT_AND_LIGHT_CHALLENGE: "FaceMovementAndLightChallenge";
|
|
182
|
+
readonly FACE_MOVEMENT_CHALLENGE: "FaceMovementChallenge";
|
|
183
|
+
};
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
export type ChallengeType = (typeof ChallengeType)[keyof typeof ChallengeType];
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
* @enum
|
|
191
|
+
*/
|
|
192
|
+
export declare const QualityFilter: {
|
|
193
|
+
readonly AUTO: "AUTO";
|
|
194
|
+
readonly HIGH: "HIGH";
|
|
195
|
+
readonly LOW: "LOW";
|
|
196
|
+
readonly MEDIUM: "MEDIUM";
|
|
197
|
+
readonly NONE: "NONE";
|
|
198
|
+
};
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export type QualityFilter = (typeof QualityFilter)[keyof typeof QualityFilter];
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* @enum
|
|
206
|
+
*/
|
|
207
|
+
export declare const OrientationCorrection: {
|
|
208
|
+
readonly ROTATE_0: "ROTATE_0";
|
|
209
|
+
readonly ROTATE_180: "ROTATE_180";
|
|
210
|
+
readonly ROTATE_270: "ROTATE_270";
|
|
211
|
+
readonly ROTATE_90: "ROTATE_90";
|
|
212
|
+
};
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export type OrientationCorrection = (typeof OrientationCorrection)[keyof typeof OrientationCorrection];
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* @enum
|
|
220
|
+
*/
|
|
221
|
+
export declare const ContentClassifier: {
|
|
222
|
+
readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
|
|
223
|
+
readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation";
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
export type ContentClassifier = (typeof ContentClassifier)[keyof typeof ContentClassifier];
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
* @enum
|
|
232
|
+
*/
|
|
233
|
+
export declare const ContentModerationAggregateBy: {
|
|
234
|
+
readonly SEGMENTS: "SEGMENTS";
|
|
235
|
+
readonly TIMESTAMPS: "TIMESTAMPS";
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
export type ContentModerationAggregateBy = (typeof ContentModerationAggregateBy)[keyof typeof ContentModerationAggregateBy];
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
* @enum
|
|
244
|
+
*/
|
|
245
|
+
export declare const ContentModerationSortBy: {
|
|
246
|
+
readonly NAME: "NAME";
|
|
247
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export type ContentModerationSortBy = (typeof ContentModerationSortBy)[keyof typeof ContentModerationSortBy];
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
* @enum
|
|
256
|
+
*/
|
|
257
|
+
export declare const DatasetType: {
|
|
258
|
+
readonly TEST: "TEST";
|
|
259
|
+
readonly TRAIN: "TRAIN";
|
|
260
|
+
};
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
*/
|
|
264
|
+
export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
* @enum
|
|
268
|
+
*/
|
|
269
|
+
export declare const ProjectAutoUpdate: {
|
|
270
|
+
readonly DISABLED: "DISABLED";
|
|
271
|
+
readonly ENABLED: "ENABLED";
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* @public
|
|
275
|
+
*/
|
|
276
|
+
export type ProjectAutoUpdate = (typeof ProjectAutoUpdate)[keyof typeof ProjectAutoUpdate];
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
* @enum
|
|
280
|
+
*/
|
|
281
|
+
export declare const CustomizationFeature: {
|
|
282
|
+
readonly CONTENT_MODERATION: "CONTENT_MODERATION";
|
|
283
|
+
readonly CUSTOM_LABELS: "CUSTOM_LABELS";
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
export type CustomizationFeature = (typeof CustomizationFeature)[keyof typeof CustomizationFeature];
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
* @enum
|
|
292
|
+
*/
|
|
293
|
+
export declare const DatasetStatus: {
|
|
294
|
+
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
295
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
296
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
297
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
298
|
+
readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
|
|
299
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
300
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
306
|
+
/**
|
|
307
|
+
* @public
|
|
308
|
+
* @enum
|
|
309
|
+
*/
|
|
310
|
+
export declare const DatasetStatusMessageCode: {
|
|
311
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
312
|
+
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
313
|
+
readonly SUCCESS: "SUCCESS";
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
export type DatasetStatusMessageCode = (typeof DatasetStatusMessageCode)[keyof typeof DatasetStatusMessageCode];
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
* @enum
|
|
322
|
+
*/
|
|
323
|
+
export declare const UnsuccessfulFaceDeletionReason: {
|
|
324
|
+
readonly ASSOCIATED_TO_AN_EXISTING_USER: "ASSOCIATED_TO_AN_EXISTING_USER";
|
|
325
|
+
readonly FACE_NOT_FOUND: "FACE_NOT_FOUND";
|
|
326
|
+
};
|
|
327
|
+
/**
|
|
328
|
+
* @public
|
|
329
|
+
*/
|
|
330
|
+
export type UnsuccessfulFaceDeletionReason = (typeof UnsuccessfulFaceDeletionReason)[keyof typeof UnsuccessfulFaceDeletionReason];
|
|
331
|
+
/**
|
|
332
|
+
* @public
|
|
333
|
+
* @enum
|
|
334
|
+
*/
|
|
335
|
+
export declare const ProjectStatus: {
|
|
336
|
+
readonly CREATED: "CREATED";
|
|
337
|
+
readonly CREATING: "CREATING";
|
|
338
|
+
readonly DELETING: "DELETING";
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
344
|
+
/**
|
|
345
|
+
* @public
|
|
346
|
+
* @enum
|
|
347
|
+
*/
|
|
348
|
+
export declare const ProjectVersionStatus: {
|
|
349
|
+
readonly COPYING_COMPLETED: "COPYING_COMPLETED";
|
|
350
|
+
readonly COPYING_FAILED: "COPYING_FAILED";
|
|
351
|
+
readonly COPYING_IN_PROGRESS: "COPYING_IN_PROGRESS";
|
|
352
|
+
readonly DELETING: "DELETING";
|
|
353
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
354
|
+
readonly EXPIRED: "EXPIRED";
|
|
355
|
+
readonly FAILED: "FAILED";
|
|
356
|
+
readonly RUNNING: "RUNNING";
|
|
357
|
+
readonly STARTING: "STARTING";
|
|
358
|
+
readonly STOPPED: "STOPPED";
|
|
359
|
+
readonly STOPPING: "STOPPING";
|
|
360
|
+
readonly TRAINING_COMPLETED: "TRAINING_COMPLETED";
|
|
361
|
+
readonly TRAINING_FAILED: "TRAINING_FAILED";
|
|
362
|
+
readonly TRAINING_IN_PROGRESS: "TRAINING_IN_PROGRESS";
|
|
363
|
+
};
|
|
364
|
+
/**
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
export type ProjectVersionStatus = (typeof ProjectVersionStatus)[keyof typeof ProjectVersionStatus];
|
|
368
|
+
/**
|
|
369
|
+
* @public
|
|
370
|
+
* @enum
|
|
371
|
+
*/
|
|
372
|
+
export declare const StreamProcessorStatus: {
|
|
373
|
+
readonly FAILED: "FAILED";
|
|
374
|
+
readonly RUNNING: "RUNNING";
|
|
375
|
+
readonly STARTING: "STARTING";
|
|
376
|
+
readonly STOPPED: "STOPPED";
|
|
377
|
+
readonly STOPPING: "STOPPING";
|
|
378
|
+
readonly UPDATING: "UPDATING";
|
|
379
|
+
};
|
|
380
|
+
/**
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
export type StreamProcessorStatus = (typeof StreamProcessorStatus)[keyof typeof StreamProcessorStatus];
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
* @enum
|
|
387
|
+
*/
|
|
388
|
+
export declare const DetectLabelsFeatureName: {
|
|
389
|
+
readonly GENERAL_LABELS: "GENERAL_LABELS";
|
|
390
|
+
readonly IMAGE_PROPERTIES: "IMAGE_PROPERTIES";
|
|
391
|
+
};
|
|
392
|
+
/**
|
|
393
|
+
* @public
|
|
394
|
+
*/
|
|
395
|
+
export type DetectLabelsFeatureName = (typeof DetectLabelsFeatureName)[keyof typeof DetectLabelsFeatureName];
|
|
396
|
+
/**
|
|
397
|
+
* @public
|
|
398
|
+
* @enum
|
|
399
|
+
*/
|
|
400
|
+
export declare const TextTypes: {
|
|
401
|
+
readonly LINE: "LINE";
|
|
402
|
+
readonly WORD: "WORD";
|
|
403
|
+
};
|
|
404
|
+
/**
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
export type TextTypes = (typeof TextTypes)[keyof typeof TextTypes];
|
|
408
|
+
/**
|
|
409
|
+
* @public
|
|
410
|
+
* @enum
|
|
411
|
+
*/
|
|
412
|
+
export declare const UnsuccessfulFaceDisassociationReason: {
|
|
413
|
+
readonly ASSOCIATED_TO_A_DIFFERENT_USER: "ASSOCIATED_TO_A_DIFFERENT_USER";
|
|
414
|
+
readonly FACE_NOT_FOUND: "FACE_NOT_FOUND";
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
export type UnsuccessfulFaceDisassociationReason = (typeof UnsuccessfulFaceDisassociationReason)[keyof typeof UnsuccessfulFaceDisassociationReason];
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
* @enum
|
|
423
|
+
*/
|
|
424
|
+
export declare const FaceAttributes: {
|
|
425
|
+
readonly ALL: "ALL";
|
|
426
|
+
readonly DEFAULT: "DEFAULT";
|
|
427
|
+
};
|
|
428
|
+
/**
|
|
429
|
+
* @public
|
|
430
|
+
*/
|
|
431
|
+
export type FaceAttributes = (typeof FaceAttributes)[keyof typeof FaceAttributes];
|
|
432
|
+
/**
|
|
433
|
+
* @public
|
|
434
|
+
* @enum
|
|
435
|
+
*/
|
|
436
|
+
export declare const FaceSearchSortBy: {
|
|
437
|
+
readonly INDEX: "INDEX";
|
|
438
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
439
|
+
};
|
|
440
|
+
/**
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
export type FaceSearchSortBy = (typeof FaceSearchSortBy)[keyof typeof FaceSearchSortBy];
|
|
444
|
+
/**
|
|
445
|
+
* @public
|
|
446
|
+
* @enum
|
|
447
|
+
*/
|
|
448
|
+
export declare const VideoJobStatus: {
|
|
449
|
+
readonly FAILED: "FAILED";
|
|
450
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
451
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
452
|
+
};
|
|
453
|
+
/**
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
export type VideoJobStatus = (typeof VideoJobStatus)[keyof typeof VideoJobStatus];
|
|
457
|
+
/**
|
|
458
|
+
* @public
|
|
459
|
+
* @enum
|
|
460
|
+
*/
|
|
461
|
+
export declare const VideoColorRange: {
|
|
462
|
+
readonly FULL: "FULL";
|
|
463
|
+
readonly LIMITED: "LIMITED";
|
|
464
|
+
};
|
|
465
|
+
/**
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
export type VideoColorRange = (typeof VideoColorRange)[keyof typeof VideoColorRange];
|
|
469
|
+
/**
|
|
470
|
+
* @public
|
|
471
|
+
* @enum
|
|
472
|
+
*/
|
|
473
|
+
export declare const LivenessSessionStatus: {
|
|
474
|
+
readonly CREATED: "CREATED";
|
|
475
|
+
readonly EXPIRED: "EXPIRED";
|
|
476
|
+
readonly FAILED: "FAILED";
|
|
477
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
478
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
479
|
+
};
|
|
480
|
+
/**
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
483
|
+
export type LivenessSessionStatus = (typeof LivenessSessionStatus)[keyof typeof LivenessSessionStatus];
|
|
484
|
+
/**
|
|
485
|
+
* @public
|
|
486
|
+
* @enum
|
|
487
|
+
*/
|
|
488
|
+
export declare const LabelDetectionAggregateBy: {
|
|
489
|
+
readonly SEGMENTS: "SEGMENTS";
|
|
490
|
+
readonly TIMESTAMPS: "TIMESTAMPS";
|
|
491
|
+
};
|
|
492
|
+
/**
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
export type LabelDetectionAggregateBy = (typeof LabelDetectionAggregateBy)[keyof typeof LabelDetectionAggregateBy];
|
|
496
|
+
/**
|
|
497
|
+
* @public
|
|
498
|
+
* @enum
|
|
499
|
+
*/
|
|
500
|
+
export declare const LabelDetectionSortBy: {
|
|
501
|
+
readonly NAME: "NAME";
|
|
502
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
503
|
+
};
|
|
504
|
+
/**
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
export type LabelDetectionSortBy = (typeof LabelDetectionSortBy)[keyof typeof LabelDetectionSortBy];
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* @enum
|
|
511
|
+
*/
|
|
512
|
+
export declare const MediaAnalysisJobFailureCode: {
|
|
513
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
514
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
515
|
+
readonly INVALID_KMS_KEY: "INVALID_KMS_KEY";
|
|
516
|
+
readonly INVALID_MANIFEST: "INVALID_MANIFEST";
|
|
517
|
+
readonly INVALID_OUTPUT_CONFIG: "INVALID_OUTPUT_CONFIG";
|
|
518
|
+
readonly INVALID_S3_OBJECT: "INVALID_S3_OBJECT";
|
|
519
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
520
|
+
readonly RESOURCE_NOT_READY: "RESOURCE_NOT_READY";
|
|
521
|
+
readonly THROTTLED: "THROTTLED";
|
|
522
|
+
};
|
|
523
|
+
/**
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
526
|
+
export type MediaAnalysisJobFailureCode = (typeof MediaAnalysisJobFailureCode)[keyof typeof MediaAnalysisJobFailureCode];
|
|
527
|
+
/**
|
|
528
|
+
* @public
|
|
529
|
+
* @enum
|
|
530
|
+
*/
|
|
531
|
+
export declare const MediaAnalysisJobStatus: {
|
|
532
|
+
readonly CREATED: "CREATED";
|
|
533
|
+
readonly FAILED: "FAILED";
|
|
534
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
535
|
+
readonly QUEUED: "QUEUED";
|
|
536
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
537
|
+
};
|
|
538
|
+
/**
|
|
539
|
+
* @public
|
|
540
|
+
*/
|
|
541
|
+
export type MediaAnalysisJobStatus = (typeof MediaAnalysisJobStatus)[keyof typeof MediaAnalysisJobStatus];
|
|
542
|
+
/**
|
|
543
|
+
* @public
|
|
544
|
+
* @enum
|
|
545
|
+
*/
|
|
546
|
+
export declare const PersonTrackingSortBy: {
|
|
547
|
+
readonly INDEX: "INDEX";
|
|
548
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
549
|
+
};
|
|
550
|
+
/**
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
553
|
+
export type PersonTrackingSortBy = (typeof PersonTrackingSortBy)[keyof typeof PersonTrackingSortBy];
|
|
554
|
+
/**
|
|
555
|
+
* @public
|
|
556
|
+
* @enum
|
|
557
|
+
*/
|
|
558
|
+
export declare const TechnicalCueType: {
|
|
559
|
+
readonly BLACK_FRAMES: "BlackFrames";
|
|
560
|
+
readonly COLOR_BARS: "ColorBars";
|
|
561
|
+
readonly CONTENT: "Content";
|
|
562
|
+
readonly END_CREDITS: "EndCredits";
|
|
563
|
+
readonly OPENING_CREDITS: "OpeningCredits";
|
|
564
|
+
readonly SLATE: "Slate";
|
|
565
|
+
readonly STUDIO_LOGO: "StudioLogo";
|
|
566
|
+
};
|
|
567
|
+
/**
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
570
|
+
export type TechnicalCueType = (typeof TechnicalCueType)[keyof typeof TechnicalCueType];
|
|
571
|
+
/**
|
|
572
|
+
* @public
|
|
573
|
+
* @enum
|
|
574
|
+
*/
|
|
575
|
+
export declare const SegmentType: {
|
|
576
|
+
readonly SHOT: "SHOT";
|
|
577
|
+
readonly TECHNICAL_CUE: "TECHNICAL_CUE";
|
|
578
|
+
};
|
|
579
|
+
/**
|
|
580
|
+
* @public
|
|
581
|
+
*/
|
|
582
|
+
export type SegmentType = (typeof SegmentType)[keyof typeof SegmentType];
|
|
583
|
+
/**
|
|
584
|
+
* @public
|
|
585
|
+
* @enum
|
|
586
|
+
*/
|
|
587
|
+
export declare const Reason: {
|
|
588
|
+
readonly EXCEEDS_MAX_FACES: "EXCEEDS_MAX_FACES";
|
|
589
|
+
readonly EXTREME_POSE: "EXTREME_POSE";
|
|
590
|
+
readonly LOW_BRIGHTNESS: "LOW_BRIGHTNESS";
|
|
591
|
+
readonly LOW_CONFIDENCE: "LOW_CONFIDENCE";
|
|
592
|
+
readonly LOW_FACE_QUALITY: "LOW_FACE_QUALITY";
|
|
593
|
+
readonly LOW_SHARPNESS: "LOW_SHARPNESS";
|
|
594
|
+
readonly SMALL_BOUNDING_BOX: "SMALL_BOUNDING_BOX";
|
|
595
|
+
};
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
export type Reason = (typeof Reason)[keyof typeof Reason];
|
|
600
|
+
/**
|
|
601
|
+
* @public
|
|
602
|
+
* @enum
|
|
603
|
+
*/
|
|
604
|
+
export declare const LabelDetectionFeatureName: {
|
|
605
|
+
readonly GENERAL_LABELS: "GENERAL_LABELS";
|
|
606
|
+
};
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
610
|
+
export type LabelDetectionFeatureName = (typeof LabelDetectionFeatureName)[keyof typeof LabelDetectionFeatureName];
|
|
611
|
+
/**
|
|
612
|
+
* @public
|
|
613
|
+
* @enum
|
|
614
|
+
*/
|
|
615
|
+
export declare const UnsearchedFaceReason: {
|
|
616
|
+
readonly EXCEEDS_MAX_FACES: "EXCEEDS_MAX_FACES";
|
|
617
|
+
readonly EXTREME_POSE: "EXTREME_POSE";
|
|
618
|
+
readonly FACE_NOT_LARGEST: "FACE_NOT_LARGEST";
|
|
619
|
+
readonly LOW_BRIGHTNESS: "LOW_BRIGHTNESS";
|
|
620
|
+
readonly LOW_CONFIDENCE: "LOW_CONFIDENCE";
|
|
621
|
+
readonly LOW_FACE_QUALITY: "LOW_FACE_QUALITY";
|
|
622
|
+
readonly LOW_SHARPNESS: "LOW_SHARPNESS";
|
|
623
|
+
readonly SMALL_BOUNDING_BOX: "SMALL_BOUNDING_BOX";
|
|
624
|
+
};
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
*/
|
|
628
|
+
export type UnsearchedFaceReason = (typeof UnsearchedFaceReason)[keyof typeof UnsearchedFaceReason];
|
|
629
|
+
/**
|
|
630
|
+
* @public
|
|
631
|
+
* @enum
|
|
632
|
+
*/
|
|
633
|
+
export declare const StreamProcessorParameterToDelete: {
|
|
634
|
+
readonly ConnectedHomeMinConfidence: "ConnectedHomeMinConfidence";
|
|
635
|
+
readonly RegionsOfInterest: "RegionsOfInterest";
|
|
636
|
+
};
|
|
637
|
+
/**
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
640
|
+
export type StreamProcessorParameterToDelete = (typeof StreamProcessorParameterToDelete)[keyof typeof StreamProcessorParameterToDelete];
|