@aws-sdk/client-rekognition 3.379.1 → 3.385.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.
|
@@ -6,6 +6,7 @@ import { RekognitionServiceException as __BaseException } from "./RekognitionSer
|
|
|
6
6
|
*/
|
|
7
7
|
export interface StartCelebrityRecognitionResponse {
|
|
8
8
|
/**
|
|
9
|
+
* @public
|
|
9
10
|
* <p>The identifier for the celebrity recognition analysis job. Use <code>JobId</code> to identify the job in
|
|
10
11
|
* a subsequent call to <code>GetCelebrityRecognition</code>.</p>
|
|
11
12
|
*/
|
|
@@ -22,6 +23,7 @@ export declare class VideoTooLargeException extends __BaseException {
|
|
|
22
23
|
Message?: string;
|
|
23
24
|
Code?: string;
|
|
24
25
|
/**
|
|
26
|
+
* @public
|
|
25
27
|
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
26
28
|
*/
|
|
27
29
|
Logref?: string;
|
|
@@ -35,11 +37,13 @@ export declare class VideoTooLargeException extends __BaseException {
|
|
|
35
37
|
*/
|
|
36
38
|
export interface StartContentModerationRequest {
|
|
37
39
|
/**
|
|
40
|
+
* @public
|
|
38
41
|
* <p>The video in which you want to detect inappropriate, unwanted, or offensive content. The video must be stored
|
|
39
42
|
* in an Amazon S3 bucket.</p>
|
|
40
43
|
*/
|
|
41
44
|
Video: Video | undefined;
|
|
42
45
|
/**
|
|
46
|
+
* @public
|
|
43
47
|
* <p>Specifies the minimum confidence that Amazon Rekognition must have in order to return a moderated content label. Confidence
|
|
44
48
|
* represents how certain Amazon Rekognition is that the moderated content is correctly identified. 0 is the lowest confidence.
|
|
45
49
|
* 100 is the highest confidence. Amazon Rekognition doesn't return any moderated content labels with a confidence level
|
|
@@ -48,17 +52,20 @@ export interface StartContentModerationRequest {
|
|
|
48
52
|
*/
|
|
49
53
|
MinConfidence?: number;
|
|
50
54
|
/**
|
|
55
|
+
* @public
|
|
51
56
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple
|
|
52
57
|
* <code>StartContentModeration</code> requests, the same <code>JobId</code> is returned. Use
|
|
53
58
|
* <code>ClientRequestToken</code> to prevent the same job from being accidently started more than once. </p>
|
|
54
59
|
*/
|
|
55
60
|
ClientRequestToken?: string;
|
|
56
61
|
/**
|
|
62
|
+
* @public
|
|
57
63
|
* <p>The Amazon SNS topic ARN that you want Amazon Rekognition Video to publish the completion status of the
|
|
58
64
|
* content analysis to. The Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy to access the topic.</p>
|
|
59
65
|
*/
|
|
60
66
|
NotificationChannel?: NotificationChannel;
|
|
61
67
|
/**
|
|
68
|
+
* @public
|
|
62
69
|
* <p>An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
|
|
63
70
|
* For example, you can use <code>JobTag</code> to group related jobs and identify them in the completion notification.</p>
|
|
64
71
|
*/
|
|
@@ -69,6 +76,7 @@ export interface StartContentModerationRequest {
|
|
|
69
76
|
*/
|
|
70
77
|
export interface StartContentModerationResponse {
|
|
71
78
|
/**
|
|
79
|
+
* @public
|
|
72
80
|
* <p>The identifier for the content analysis job. Use <code>JobId</code> to identify the job in
|
|
73
81
|
* a subsequent call to <code>GetContentModeration</code>.</p>
|
|
74
82
|
*/
|
|
@@ -79,22 +87,26 @@ export interface StartContentModerationResponse {
|
|
|
79
87
|
*/
|
|
80
88
|
export interface StartFaceDetectionRequest {
|
|
81
89
|
/**
|
|
90
|
+
* @public
|
|
82
91
|
* <p>The video in which you want to detect faces. The video must be stored
|
|
83
92
|
* in an Amazon S3 bucket.</p>
|
|
84
93
|
*/
|
|
85
94
|
Video: Video | undefined;
|
|
86
95
|
/**
|
|
96
|
+
* @public
|
|
87
97
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple
|
|
88
98
|
* <code>StartFaceDetection</code> requests, the same <code>JobId</code> is returned. Use
|
|
89
99
|
* <code>ClientRequestToken</code> to prevent the same job from being accidently started more than once. </p>
|
|
90
100
|
*/
|
|
91
101
|
ClientRequestToken?: string;
|
|
92
102
|
/**
|
|
103
|
+
* @public
|
|
93
104
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to publish the completion status of the
|
|
94
105
|
* face detection operation. The Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy.</p>
|
|
95
106
|
*/
|
|
96
107
|
NotificationChannel?: NotificationChannel;
|
|
97
108
|
/**
|
|
109
|
+
* @public
|
|
98
110
|
* <p>The face attributes you want returned.</p>
|
|
99
111
|
* <p>
|
|
100
112
|
* <code>DEFAULT</code> - The following subset of facial attributes are returned: BoundingBox, Confidence, Pose, Quality and Landmarks. </p>
|
|
@@ -103,6 +115,7 @@ export interface StartFaceDetectionRequest {
|
|
|
103
115
|
*/
|
|
104
116
|
FaceAttributes?: FaceAttributes | string;
|
|
105
117
|
/**
|
|
118
|
+
* @public
|
|
106
119
|
* <p>An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
|
|
107
120
|
* For example, you can use <code>JobTag</code> to group related jobs and identify them in the completion notification.</p>
|
|
108
121
|
*/
|
|
@@ -113,6 +126,7 @@ export interface StartFaceDetectionRequest {
|
|
|
113
126
|
*/
|
|
114
127
|
export interface StartFaceDetectionResponse {
|
|
115
128
|
/**
|
|
129
|
+
* @public
|
|
116
130
|
* <p>The identifier for the face detection job. Use <code>JobId</code> to identify the job in
|
|
117
131
|
* a subsequent call to <code>GetFaceDetection</code>.</p>
|
|
118
132
|
*/
|
|
@@ -123,29 +137,35 @@ export interface StartFaceDetectionResponse {
|
|
|
123
137
|
*/
|
|
124
138
|
export interface StartFaceSearchRequest {
|
|
125
139
|
/**
|
|
140
|
+
* @public
|
|
126
141
|
* <p>The video you want to search. The video must be stored in an Amazon S3 bucket. </p>
|
|
127
142
|
*/
|
|
128
143
|
Video: Video | undefined;
|
|
129
144
|
/**
|
|
145
|
+
* @public
|
|
130
146
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple
|
|
131
147
|
* <code>StartFaceSearch</code> requests, the same <code>JobId</code> is returned. Use
|
|
132
148
|
* <code>ClientRequestToken</code> to prevent the same job from being accidently started more than once. </p>
|
|
133
149
|
*/
|
|
134
150
|
ClientRequestToken?: string;
|
|
135
151
|
/**
|
|
152
|
+
* @public
|
|
136
153
|
* <p>The minimum confidence in the person match to return. For example, don't return any matches where confidence in matches is less than 70%.
|
|
137
154
|
* The default value is 80%.</p>
|
|
138
155
|
*/
|
|
139
156
|
FaceMatchThreshold?: number;
|
|
140
157
|
/**
|
|
158
|
+
* @public
|
|
141
159
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|
142
160
|
*/
|
|
143
161
|
CollectionId: string | undefined;
|
|
144
162
|
/**
|
|
163
|
+
* @public
|
|
145
164
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to publish the completion status of the search. The Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy to access the topic.</p>
|
|
146
165
|
*/
|
|
147
166
|
NotificationChannel?: NotificationChannel;
|
|
148
167
|
/**
|
|
168
|
+
* @public
|
|
149
169
|
* <p>An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
|
|
150
170
|
* For example, you can use <code>JobTag</code> to group related jobs and identify them in the completion notification.</p>
|
|
151
171
|
*/
|
|
@@ -156,6 +176,7 @@ export interface StartFaceSearchRequest {
|
|
|
156
176
|
*/
|
|
157
177
|
export interface StartFaceSearchResponse {
|
|
158
178
|
/**
|
|
179
|
+
* @public
|
|
159
180
|
* <p>The identifier for the search job. Use <code>JobId</code> to identify the job in a subsequent call to <code>GetFaceSearch</code>. </p>
|
|
160
181
|
*/
|
|
161
182
|
JobId?: string;
|
|
@@ -165,17 +186,20 @@ export interface StartFaceSearchResponse {
|
|
|
165
186
|
*/
|
|
166
187
|
export interface StartLabelDetectionRequest {
|
|
167
188
|
/**
|
|
189
|
+
* @public
|
|
168
190
|
* <p>The video in which you want to detect labels. The video must be stored
|
|
169
191
|
* in an Amazon S3 bucket.</p>
|
|
170
192
|
*/
|
|
171
193
|
Video: Video | undefined;
|
|
172
194
|
/**
|
|
195
|
+
* @public
|
|
173
196
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple
|
|
174
197
|
* <code>StartLabelDetection</code> requests, the same <code>JobId</code> is returned. Use
|
|
175
198
|
* <code>ClientRequestToken</code> to prevent the same job from being accidently started more than once. </p>
|
|
176
199
|
*/
|
|
177
200
|
ClientRequestToken?: string;
|
|
178
201
|
/**
|
|
202
|
+
* @public
|
|
179
203
|
* <p>Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected label. Confidence
|
|
180
204
|
* represents how certain Amazon Rekognition is that a label is correctly identified.0 is the lowest confidence.
|
|
181
205
|
* 100 is the highest confidence. Amazon Rekognition Video doesn't return any labels with a confidence level
|
|
@@ -186,20 +210,24 @@ export interface StartLabelDetectionRequest {
|
|
|
186
210
|
*/
|
|
187
211
|
MinConfidence?: number;
|
|
188
212
|
/**
|
|
213
|
+
* @public
|
|
189
214
|
* <p>The Amazon SNS topic ARN you want Amazon Rekognition Video to publish the completion status of the label detection
|
|
190
215
|
* operation to. The Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy.</p>
|
|
191
216
|
*/
|
|
192
217
|
NotificationChannel?: NotificationChannel;
|
|
193
218
|
/**
|
|
219
|
+
* @public
|
|
194
220
|
* <p>An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
|
|
195
221
|
* For example, you can use <code>JobTag</code> to group related jobs and identify them in the completion notification.</p>
|
|
196
222
|
*/
|
|
197
223
|
JobTag?: string;
|
|
198
224
|
/**
|
|
225
|
+
* @public
|
|
199
226
|
* <p>The features to return after video analysis. You can specify that GENERAL_LABELS are returned.</p>
|
|
200
227
|
*/
|
|
201
228
|
Features?: (LabelDetectionFeatureName | string)[];
|
|
202
229
|
/**
|
|
230
|
+
* @public
|
|
203
231
|
* <p>The settings for a StartLabelDetection request.Contains the specified parameters for the label detection request of an asynchronous label analysis operation.
|
|
204
232
|
* Settings can include filters for GENERAL_LABELS.</p>
|
|
205
233
|
*/
|
|
@@ -210,6 +238,7 @@ export interface StartLabelDetectionRequest {
|
|
|
210
238
|
*/
|
|
211
239
|
export interface StartLabelDetectionResponse {
|
|
212
240
|
/**
|
|
241
|
+
* @public
|
|
213
242
|
* <p>The identifier for the label detection job. Use <code>JobId</code> to identify the job in
|
|
214
243
|
* a subsequent call to <code>GetLabelDetection</code>. </p>
|
|
215
244
|
*/
|
|
@@ -220,22 +249,26 @@ export interface StartLabelDetectionResponse {
|
|
|
220
249
|
*/
|
|
221
250
|
export interface StartPersonTrackingRequest {
|
|
222
251
|
/**
|
|
252
|
+
* @public
|
|
223
253
|
* <p>The video in which you want to detect people. The video must be stored
|
|
224
254
|
* in an Amazon S3 bucket.</p>
|
|
225
255
|
*/
|
|
226
256
|
Video: Video | undefined;
|
|
227
257
|
/**
|
|
258
|
+
* @public
|
|
228
259
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple
|
|
229
260
|
* <code>StartPersonTracking</code> requests, the same <code>JobId</code> is returned. Use
|
|
230
261
|
* <code>ClientRequestToken</code> to prevent the same job from being accidently started more than once. </p>
|
|
231
262
|
*/
|
|
232
263
|
ClientRequestToken?: string;
|
|
233
264
|
/**
|
|
265
|
+
* @public
|
|
234
266
|
* <p>The Amazon SNS topic ARN you want Amazon Rekognition Video to publish the completion status of the people detection
|
|
235
267
|
* operation to. The Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy.</p>
|
|
236
268
|
*/
|
|
237
269
|
NotificationChannel?: NotificationChannel;
|
|
238
270
|
/**
|
|
271
|
+
* @public
|
|
239
272
|
* <p>An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
|
|
240
273
|
* For example, you can use <code>JobTag</code> to group related jobs and identify them in the completion notification.</p>
|
|
241
274
|
*/
|
|
@@ -246,6 +279,7 @@ export interface StartPersonTrackingRequest {
|
|
|
246
279
|
*/
|
|
247
280
|
export interface StartPersonTrackingResponse {
|
|
248
281
|
/**
|
|
282
|
+
* @public
|
|
249
283
|
* <p>The identifier for the person detection job. Use <code>JobId</code> to identify the job in
|
|
250
284
|
* a subsequent call to <code>GetPersonTracking</code>.</p>
|
|
251
285
|
*/
|
|
@@ -256,10 +290,12 @@ export interface StartPersonTrackingResponse {
|
|
|
256
290
|
*/
|
|
257
291
|
export interface StartProjectVersionRequest {
|
|
258
292
|
/**
|
|
293
|
+
* @public
|
|
259
294
|
* <p>The Amazon Resource Name(ARN) of the model version that you want to start.</p>
|
|
260
295
|
*/
|
|
261
296
|
ProjectVersionArn: string | undefined;
|
|
262
297
|
/**
|
|
298
|
+
* @public
|
|
263
299
|
* <p>The minimum number of inference units to use. A single
|
|
264
300
|
* inference unit represents 1 hour of processing. </p>
|
|
265
301
|
* <p>For information about the number
|
|
@@ -273,6 +309,7 @@ export interface StartProjectVersionRequest {
|
|
|
273
309
|
*/
|
|
274
310
|
MinInferenceUnits: number | undefined;
|
|
275
311
|
/**
|
|
312
|
+
* @public
|
|
276
313
|
* <p>The maximum number of inference units to use for auto-scaling the model. If you don't
|
|
277
314
|
* specify a value, Amazon Rekognition Custom Labels doesn't auto-scale the model.</p>
|
|
278
315
|
*/
|
|
@@ -283,6 +320,7 @@ export interface StartProjectVersionRequest {
|
|
|
283
320
|
*/
|
|
284
321
|
export interface StartProjectVersionResponse {
|
|
285
322
|
/**
|
|
323
|
+
* @public
|
|
286
324
|
* <p>The current running status of the model. </p>
|
|
287
325
|
*/
|
|
288
326
|
Status?: ProjectVersionStatus | string;
|
|
@@ -294,6 +332,7 @@ export interface StartProjectVersionResponse {
|
|
|
294
332
|
*/
|
|
295
333
|
export interface StartShotDetectionFilter {
|
|
296
334
|
/**
|
|
335
|
+
* @public
|
|
297
336
|
* <p>Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected segment. Confidence
|
|
298
337
|
* represents how certain Amazon Rekognition is that a segment is correctly identified. 0 is the lowest confidence.
|
|
299
338
|
* 100 is the highest confidence. Amazon Rekognition Video doesn't return any segments with a confidence level
|
|
@@ -310,6 +349,7 @@ export interface StartShotDetectionFilter {
|
|
|
310
349
|
*/
|
|
311
350
|
export interface StartTechnicalCueDetectionFilter {
|
|
312
351
|
/**
|
|
352
|
+
* @public
|
|
313
353
|
* <p>Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected segment. Confidence
|
|
314
354
|
* represents how certain Amazon Rekognition is that a segment is correctly identified. 0 is the lowest confidence.
|
|
315
355
|
* 100 is the highest confidence. Amazon Rekognition Video doesn't return any segments with a confidence level
|
|
@@ -319,6 +359,7 @@ export interface StartTechnicalCueDetectionFilter {
|
|
|
319
359
|
*/
|
|
320
360
|
MinSegmentConfidence?: number;
|
|
321
361
|
/**
|
|
362
|
+
* @public
|
|
322
363
|
* <p>
|
|
323
364
|
* A filter that allows you to control the black frame detection by specifying the black levels and pixel coverage of black pixels in a frame.
|
|
324
365
|
* Videos can come from multiple sources, formats, and time periods, with different standards and varying noise levels for black frames that need to be accounted for.
|
|
@@ -334,10 +375,12 @@ export interface StartTechnicalCueDetectionFilter {
|
|
|
334
375
|
*/
|
|
335
376
|
export interface StartSegmentDetectionFilters {
|
|
336
377
|
/**
|
|
378
|
+
* @public
|
|
337
379
|
* <p>Filters that are specific to technical cues.</p>
|
|
338
380
|
*/
|
|
339
381
|
TechnicalCueFilter?: StartTechnicalCueDetectionFilter;
|
|
340
382
|
/**
|
|
383
|
+
* @public
|
|
341
384
|
* <p>Filters that are specific to shot detections.</p>
|
|
342
385
|
*/
|
|
343
386
|
ShotFilter?: StartShotDetectionFilter;
|
|
@@ -347,31 +390,37 @@ export interface StartSegmentDetectionFilters {
|
|
|
347
390
|
*/
|
|
348
391
|
export interface StartSegmentDetectionRequest {
|
|
349
392
|
/**
|
|
393
|
+
* @public
|
|
350
394
|
* <p>Video file stored in an Amazon S3 bucket. Amazon Rekognition video start operations such as <a>StartLabelDetection</a> use <code>Video</code> to
|
|
351
395
|
* specify a video for analysis. The supported file formats are .mp4, .mov and .avi.</p>
|
|
352
396
|
*/
|
|
353
397
|
Video: Video | undefined;
|
|
354
398
|
/**
|
|
399
|
+
* @public
|
|
355
400
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple
|
|
356
401
|
* <code>StartSegmentDetection</code> requests, the same <code>JobId</code> is returned. Use
|
|
357
402
|
* <code>ClientRequestToken</code> to prevent the same job from being accidently started more than once. </p>
|
|
358
403
|
*/
|
|
359
404
|
ClientRequestToken?: string;
|
|
360
405
|
/**
|
|
406
|
+
* @public
|
|
361
407
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to publish the completion status of the
|
|
362
408
|
* segment detection operation. Note that the Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy to access the topic.</p>
|
|
363
409
|
*/
|
|
364
410
|
NotificationChannel?: NotificationChannel;
|
|
365
411
|
/**
|
|
412
|
+
* @public
|
|
366
413
|
* <p>An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
|
|
367
414
|
* For example, you can use <code>JobTag</code> to group related jobs and identify them in the completion notification.</p>
|
|
368
415
|
*/
|
|
369
416
|
JobTag?: string;
|
|
370
417
|
/**
|
|
418
|
+
* @public
|
|
371
419
|
* <p>Filters for technical cue or shot detection.</p>
|
|
372
420
|
*/
|
|
373
421
|
Filters?: StartSegmentDetectionFilters;
|
|
374
422
|
/**
|
|
423
|
+
* @public
|
|
375
424
|
* <p>An array of segment types to detect in the video. Valid values are TECHNICAL_CUE and SHOT.</p>
|
|
376
425
|
*/
|
|
377
426
|
SegmentTypes: (SegmentType | string)[] | undefined;
|
|
@@ -381,6 +430,7 @@ export interface StartSegmentDetectionRequest {
|
|
|
381
430
|
*/
|
|
382
431
|
export interface StartSegmentDetectionResponse {
|
|
383
432
|
/**
|
|
433
|
+
* @public
|
|
384
434
|
* <p>Unique identifier for the segment detection job. The <code>JobId</code> is returned from <code>StartSegmentDetection</code>.
|
|
385
435
|
* </p>
|
|
386
436
|
*/
|
|
@@ -393,6 +443,7 @@ export interface StartSegmentDetectionResponse {
|
|
|
393
443
|
*/
|
|
394
444
|
export interface StreamProcessingStartSelector {
|
|
395
445
|
/**
|
|
446
|
+
* @public
|
|
396
447
|
* <p>
|
|
397
448
|
* Specifies the starting point in the stream to start processing. This can be done with a producer timestamp or a fragment number in a Kinesis stream.
|
|
398
449
|
* </p>
|
|
@@ -408,6 +459,7 @@ export interface StreamProcessingStartSelector {
|
|
|
408
459
|
*/
|
|
409
460
|
export interface StreamProcessingStopSelector {
|
|
410
461
|
/**
|
|
462
|
+
* @public
|
|
411
463
|
* <p>
|
|
412
464
|
* Specifies the maximum amount of time in seconds that you want the stream to be processed. The largest amount of time is 2 minutes. The default is 10 seconds.
|
|
413
465
|
* </p>
|
|
@@ -419,10 +471,12 @@ export interface StreamProcessingStopSelector {
|
|
|
419
471
|
*/
|
|
420
472
|
export interface StartStreamProcessorRequest {
|
|
421
473
|
/**
|
|
474
|
+
* @public
|
|
422
475
|
* <p>The name of the stream processor to start processing.</p>
|
|
423
476
|
*/
|
|
424
477
|
Name: string | undefined;
|
|
425
478
|
/**
|
|
479
|
+
* @public
|
|
426
480
|
* <p>
|
|
427
481
|
* Specifies the starting point in the Kinesis stream to start processing.
|
|
428
482
|
* You can use the producer timestamp or the fragment number. If you use the producer timestamp, you must put the time in milliseconds.
|
|
@@ -432,6 +486,7 @@ export interface StartStreamProcessorRequest {
|
|
|
432
486
|
*/
|
|
433
487
|
StartSelector?: StreamProcessingStartSelector;
|
|
434
488
|
/**
|
|
489
|
+
* @public
|
|
435
490
|
* <p>
|
|
436
491
|
* Specifies when to stop processing the stream. You can specify a
|
|
437
492
|
* maximum amount of time to process the video.
|
|
@@ -445,6 +500,7 @@ export interface StartStreamProcessorRequest {
|
|
|
445
500
|
*/
|
|
446
501
|
export interface StartStreamProcessorResponse {
|
|
447
502
|
/**
|
|
503
|
+
* @public
|
|
448
504
|
* <p>
|
|
449
505
|
* A unique identifier for the stream processing session.
|
|
450
506
|
* </p>
|
|
@@ -459,10 +515,12 @@ export interface StartStreamProcessorResponse {
|
|
|
459
515
|
*/
|
|
460
516
|
export interface StartTextDetectionFilters {
|
|
461
517
|
/**
|
|
518
|
+
* @public
|
|
462
519
|
* <p>Filters focusing on qualities of the text, such as confidence or size.</p>
|
|
463
520
|
*/
|
|
464
521
|
WordFilter?: DetectionFilter;
|
|
465
522
|
/**
|
|
523
|
+
* @public
|
|
466
524
|
* <p>Filter focusing on a certain area of the frame. Uses a <code>BoundingBox</code> object to set the region
|
|
467
525
|
* of the screen.</p>
|
|
468
526
|
*/
|
|
@@ -473,28 +531,33 @@ export interface StartTextDetectionFilters {
|
|
|
473
531
|
*/
|
|
474
532
|
export interface StartTextDetectionRequest {
|
|
475
533
|
/**
|
|
534
|
+
* @public
|
|
476
535
|
* <p>Video file stored in an Amazon S3 bucket. Amazon Rekognition video start operations such as <a>StartLabelDetection</a> use <code>Video</code> to
|
|
477
536
|
* specify a video for analysis. The supported file formats are .mp4, .mov and .avi.</p>
|
|
478
537
|
*/
|
|
479
538
|
Video: Video | undefined;
|
|
480
539
|
/**
|
|
540
|
+
* @public
|
|
481
541
|
* <p>Idempotent token used to identify the start request. If you use the same token with multiple <code>StartTextDetection</code>
|
|
482
542
|
* requests, the same <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent the same job
|
|
483
543
|
* from being accidentaly started more than once.</p>
|
|
484
544
|
*/
|
|
485
545
|
ClientRequestToken?: string;
|
|
486
546
|
/**
|
|
547
|
+
* @public
|
|
487
548
|
* <p>The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the completion status of a video analysis operation. For more information, see
|
|
488
549
|
* <a href="https://docs.aws.amazon.com/rekognition/latest/dg/api-video.html">Calling Amazon Rekognition Video operations</a>. Note that the Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy to access the topic.
|
|
489
550
|
* For more information, see <a href="https://docs.aws.amazon.com/rekognition/latest/dg/api-video-roles.html#api-video-roles-all-topics">Giving access to multiple Amazon SNS topics</a>.</p>
|
|
490
551
|
*/
|
|
491
552
|
NotificationChannel?: NotificationChannel;
|
|
492
553
|
/**
|
|
554
|
+
* @public
|
|
493
555
|
* <p>An identifier returned in the completion status published by your Amazon Simple Notification Service topic. For example, you can use <code>JobTag</code> to group related jobs
|
|
494
556
|
* and identify them in the completion notification.</p>
|
|
495
557
|
*/
|
|
496
558
|
JobTag?: string;
|
|
497
559
|
/**
|
|
560
|
+
* @public
|
|
498
561
|
* <p>Optional parameters that let you set criteria the text must meet to be included in your response.</p>
|
|
499
562
|
*/
|
|
500
563
|
Filters?: StartTextDetectionFilters;
|
|
@@ -504,6 +567,7 @@ export interface StartTextDetectionRequest {
|
|
|
504
567
|
*/
|
|
505
568
|
export interface StartTextDetectionResponse {
|
|
506
569
|
/**
|
|
570
|
+
* @public
|
|
507
571
|
* <p>Identifier for the text detection job. Use <code>JobId</code> to identify the job in a subsequent call to <code>GetTextDetection</code>.</p>
|
|
508
572
|
*/
|
|
509
573
|
JobId?: string;
|
|
@@ -513,6 +577,7 @@ export interface StartTextDetectionResponse {
|
|
|
513
577
|
*/
|
|
514
578
|
export interface StopProjectVersionRequest {
|
|
515
579
|
/**
|
|
580
|
+
* @public
|
|
516
581
|
* <p>The Amazon Resource Name (ARN) of the model version that you want to delete.</p>
|
|
517
582
|
* <p>This operation requires permissions to perform the <code>rekognition:StopProjectVersion</code> action.</p>
|
|
518
583
|
*/
|
|
@@ -523,6 +588,7 @@ export interface StopProjectVersionRequest {
|
|
|
523
588
|
*/
|
|
524
589
|
export interface StopProjectVersionResponse {
|
|
525
590
|
/**
|
|
591
|
+
* @public
|
|
526
592
|
* <p>The current status of the stop operation. </p>
|
|
527
593
|
*/
|
|
528
594
|
Status?: ProjectVersionStatus | string;
|
|
@@ -532,6 +598,7 @@ export interface StopProjectVersionResponse {
|
|
|
532
598
|
*/
|
|
533
599
|
export interface StopStreamProcessorRequest {
|
|
534
600
|
/**
|
|
601
|
+
* @public
|
|
535
602
|
* <p>The name of a stream processor created by <a>CreateStreamProcessor</a>.</p>
|
|
536
603
|
*/
|
|
537
604
|
Name: string | undefined;
|
|
@@ -546,11 +613,13 @@ export interface StopStreamProcessorResponse {
|
|
|
546
613
|
*/
|
|
547
614
|
export interface TagResourceRequest {
|
|
548
615
|
/**
|
|
616
|
+
* @public
|
|
549
617
|
* <p> Amazon Resource Name (ARN) of the model, collection, or stream processor that you want to
|
|
550
618
|
* assign the tags to. </p>
|
|
551
619
|
*/
|
|
552
620
|
ResourceArn: string | undefined;
|
|
553
621
|
/**
|
|
622
|
+
* @public
|
|
554
623
|
* <p> The key-value tags to assign to the resource. </p>
|
|
555
624
|
*/
|
|
556
625
|
Tags: Record<string, string> | undefined;
|
|
@@ -565,11 +634,13 @@ export interface TagResourceResponse {
|
|
|
565
634
|
*/
|
|
566
635
|
export interface UntagResourceRequest {
|
|
567
636
|
/**
|
|
637
|
+
* @public
|
|
568
638
|
* <p> Amazon Resource Name (ARN) of the model, collection, or stream processor that you want to
|
|
569
639
|
* remove the tags from. </p>
|
|
570
640
|
*/
|
|
571
641
|
ResourceArn: string | undefined;
|
|
572
642
|
/**
|
|
643
|
+
* @public
|
|
573
644
|
* <p> A list of the tags that you want to remove. </p>
|
|
574
645
|
*/
|
|
575
646
|
TagKeys: string[] | undefined;
|
|
@@ -584,12 +655,14 @@ export interface UntagResourceResponse {
|
|
|
584
655
|
*/
|
|
585
656
|
export interface UpdateDatasetEntriesRequest {
|
|
586
657
|
/**
|
|
658
|
+
* @public
|
|
587
659
|
* <p>
|
|
588
660
|
* The Amazon Resource Name (ARN) of the dataset that you want to update.
|
|
589
661
|
* </p>
|
|
590
662
|
*/
|
|
591
663
|
DatasetArn: string | undefined;
|
|
592
664
|
/**
|
|
665
|
+
* @public
|
|
593
666
|
* <p>
|
|
594
667
|
* The changes that you want to make to the dataset.
|
|
595
668
|
* </p>
|
|
@@ -621,6 +694,7 @@ export type StreamProcessorParameterToDelete = (typeof StreamProcessorParameterT
|
|
|
621
694
|
*/
|
|
622
695
|
export interface StreamProcessorSettingsForUpdate {
|
|
623
696
|
/**
|
|
697
|
+
* @public
|
|
624
698
|
* <p>
|
|
625
699
|
* The label detection settings you want to use for your stream processor.
|
|
626
700
|
* </p>
|
|
@@ -632,24 +706,28 @@ export interface StreamProcessorSettingsForUpdate {
|
|
|
632
706
|
*/
|
|
633
707
|
export interface UpdateStreamProcessorRequest {
|
|
634
708
|
/**
|
|
709
|
+
* @public
|
|
635
710
|
* <p>
|
|
636
711
|
* Name of the stream processor that you want to update.
|
|
637
712
|
* </p>
|
|
638
713
|
*/
|
|
639
714
|
Name: string | undefined;
|
|
640
715
|
/**
|
|
716
|
+
* @public
|
|
641
717
|
* <p>
|
|
642
718
|
* The stream processor settings that you want to update. Label detection settings can be updated to detect different labels with a different minimum confidence.
|
|
643
719
|
* </p>
|
|
644
720
|
*/
|
|
645
721
|
SettingsForUpdate?: StreamProcessorSettingsForUpdate;
|
|
646
722
|
/**
|
|
723
|
+
* @public
|
|
647
724
|
* <p>
|
|
648
725
|
* Specifies locations in the frames where Amazon Rekognition checks for objects or people. This is an optional parameter for label detection stream processors.
|
|
649
726
|
* </p>
|
|
650
727
|
*/
|
|
651
728
|
RegionsOfInterestForUpdate?: RegionOfInterest[];
|
|
652
729
|
/**
|
|
730
|
+
* @public
|
|
653
731
|
* <p>
|
|
654
732
|
* Shows whether you are sharing data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis.
|
|
655
733
|
* Note that if you opt out at the account level this setting is ignored on individual streams.
|
|
@@ -657,6 +735,7 @@ export interface UpdateStreamProcessorRequest {
|
|
|
657
735
|
*/
|
|
658
736
|
DataSharingPreferenceForUpdate?: StreamProcessorDataSharingPreference;
|
|
659
737
|
/**
|
|
738
|
+
* @public
|
|
660
739
|
* <p>
|
|
661
740
|
* A list of parameters you want to delete from the stream processor.
|
|
662
741
|
* </p>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rekognition",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rekognition Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|