@aws-sdk/client-rekognition 3.289.0 → 3.290.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-types/commands/CompareFacesCommand.d.ts +30 -0
- package/dist-types/commands/CopyProjectVersionCommand.d.ts +34 -0
- package/dist-types/commands/CreateCollectionCommand.d.ts +26 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +32 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +26 -0
- package/dist-types/commands/CreateProjectVersionCommand.d.ts +34 -0
- package/dist-types/commands/CreateStreamProcessorCommand.d.ts +31 -0
- package/dist-types/commands/DeleteCollectionCommand.d.ts +21 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +29 -0
- package/dist-types/commands/DeleteFacesCommand.d.ts +21 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +24 -0
- package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +24 -0
- package/dist-types/commands/DeleteProjectVersionCommand.d.ts +24 -0
- package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +24 -0
- package/dist-types/commands/DescribeCollectionCommand.d.ts +21 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +21 -0
- package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +24 -0
- package/dist-types/commands/DescribeProjectsCommand.d.ts +21 -0
- package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +21 -0
- package/dist-types/commands/DetectCustomLabelsCommand.d.ts +43 -0
- package/dist-types/commands/DetectFacesCommand.d.ts +30 -0
- package/dist-types/commands/DetectLabelsCommand.d.ts +30 -0
- package/dist-types/commands/DetectModerationLabelsCommand.d.ts +33 -0
- package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +30 -0
- package/dist-types/commands/DetectTextCommand.d.ts +30 -0
- package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +26 -0
- package/dist-types/commands/GetCelebrityInfoCommand.d.ts +21 -0
- package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +24 -0
- package/dist-types/commands/GetContentModerationCommand.d.ts +24 -0
- package/dist-types/commands/GetFaceDetectionCommand.d.ts +24 -0
- package/dist-types/commands/GetFaceSearchCommand.d.ts +24 -0
- package/dist-types/commands/GetLabelDetectionCommand.d.ts +24 -0
- package/dist-types/commands/GetPersonTrackingCommand.d.ts +24 -0
- package/dist-types/commands/GetSegmentDetectionCommand.d.ts +24 -0
- package/dist-types/commands/GetTextDetectionCommand.d.ts +24 -0
- package/dist-types/commands/IndexFacesCommand.d.ts +38 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +24 -0
- package/dist-types/commands/ListDatasetEntriesCommand.d.ts +32 -0
- package/dist-types/commands/ListDatasetLabelsCommand.d.ts +32 -0
- package/dist-types/commands/ListFacesCommand.d.ts +24 -0
- package/dist-types/commands/ListProjectPoliciesCommand.d.ts +24 -0
- package/dist-types/commands/ListStreamProcessorsCommand.d.ts +21 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +21 -0
- package/dist-types/commands/PutProjectPolicyCommand.d.ts +41 -0
- package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +30 -0
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +33 -0
- package/dist-types/commands/SearchFacesCommand.d.ts +21 -0
- package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +34 -0
- package/dist-types/commands/StartContentModerationCommand.d.ts +34 -0
- package/dist-types/commands/StartFaceDetectionCommand.d.ts +34 -0
- package/dist-types/commands/StartFaceSearchCommand.d.ts +37 -0
- package/dist-types/commands/StartLabelDetectionCommand.d.ts +34 -0
- package/dist-types/commands/StartPersonTrackingCommand.d.ts +34 -0
- package/dist-types/commands/StartProjectVersionCommand.d.ts +29 -0
- package/dist-types/commands/StartSegmentDetectionCommand.d.ts +34 -0
- package/dist-types/commands/StartStreamProcessorCommand.d.ts +24 -0
- package/dist-types/commands/StartTextDetectionCommand.d.ts +34 -0
- package/dist-types/commands/StopProjectVersionCommand.d.ts +24 -0
- package/dist-types/commands/StopStreamProcessorCommand.d.ts +24 -0
- package/dist-types/commands/TagResourceCommand.d.ts +26 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +21 -0
- package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +29 -0
- package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +21 -0
- package/package.json +30 -30
|
@@ -42,6 +42,40 @@ export interface StartSegmentDetectionCommandOutput extends StartSegmentDetectio
|
|
|
42
42
|
* @see {@link StartSegmentDetectionCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
46
|
+
* <p>You are not authorized to perform the action.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
49
|
+
* <p>A <code>ClientRequestToken</code> input parameter was reused with an operation, but at least one of the other input
|
|
50
|
+
* parameters is different from the previous call to the operation.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InternalServerError} (server fault)
|
|
53
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
56
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
57
|
+
* operation again.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidS3ObjectException} (client fault)
|
|
60
|
+
* <p>Amazon Rekognition is unable to access the S3 object specified in the request.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
63
|
+
* <p>An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
|
|
64
|
+
* (<code>StartLabelDetection</code>, for example) will raise a <code>LimitExceededException</code> exception (HTTP status code: 400) until
|
|
65
|
+
* the number of concurrently running jobs is below the Amazon Rekognition service limit. </p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
68
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
69
|
+
* limit, contact Amazon Rekognition.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
72
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link VideoTooLargeException} (client fault)
|
|
75
|
+
* <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
|
|
76
|
+
* The maximum duration is 6 hours. </p>
|
|
77
|
+
*
|
|
78
|
+
*
|
|
45
79
|
*/
|
|
46
80
|
export declare class StartSegmentDetectionCommand extends $Command<StartSegmentDetectionCommandInput, StartSegmentDetectionCommandOutput, RekognitionClientResolvedConfig> {
|
|
47
81
|
readonly input: StartSegmentDetectionCommandInput;
|
|
@@ -32,6 +32,30 @@ export interface StartStreamProcessorCommandOutput extends StartStreamProcessorR
|
|
|
32
32
|
* @see {@link StartStreamProcessorCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform the action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerError} (server fault)
|
|
39
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
43
|
+
* operation again.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
46
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
47
|
+
* limit, contact Amazon Rekognition.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
50
|
+
* <p>The specified resource is already being used.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
56
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
35
59
|
*/
|
|
36
60
|
export declare class StartStreamProcessorCommand extends $Command<StartStreamProcessorCommandInput, StartStreamProcessorCommandOutput, RekognitionClientResolvedConfig> {
|
|
37
61
|
readonly input: StartStreamProcessorCommandInput;
|
|
@@ -36,6 +36,40 @@ export interface StartTextDetectionCommandOutput extends StartTextDetectionRespo
|
|
|
36
36
|
* @see {@link StartTextDetectionCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
40
|
+
* <p>You are not authorized to perform the action.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
43
|
+
* <p>A <code>ClientRequestToken</code> input parameter was reused with an operation, but at least one of the other input
|
|
44
|
+
* parameters is different from the previous call to the operation.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
50
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
51
|
+
* operation again.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InvalidS3ObjectException} (client fault)
|
|
54
|
+
* <p>Amazon Rekognition is unable to access the S3 object specified in the request.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
57
|
+
* <p>An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
|
|
58
|
+
* (<code>StartLabelDetection</code>, for example) will raise a <code>LimitExceededException</code> exception (HTTP status code: 400) until
|
|
59
|
+
* the number of concurrently running jobs is below the Amazon Rekognition service limit. </p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
62
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
63
|
+
* limit, contact Amazon Rekognition.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
66
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link VideoTooLargeException} (client fault)
|
|
69
|
+
* <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
|
|
70
|
+
* The maximum duration is 6 hours. </p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
39
73
|
*/
|
|
40
74
|
export declare class StartTextDetectionCommand extends $Command<StartTextDetectionCommandInput, StartTextDetectionCommandOutput, RekognitionClientResolvedConfig> {
|
|
41
75
|
readonly input: StartTextDetectionCommandInput;
|
|
@@ -30,6 +30,30 @@ export interface StopProjectVersionCommandOutput extends StopProjectVersionRespo
|
|
|
30
30
|
* @see {@link StopProjectVersionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You are not authorized to perform the action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerError} (server fault)
|
|
37
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
40
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
41
|
+
* operation again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
44
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
45
|
+
* limit, contact Amazon Rekognition.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
48
|
+
* <p>The specified resource is already being used.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
54
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
33
57
|
*/
|
|
34
58
|
export declare class StopProjectVersionCommand extends $Command<StopProjectVersionCommandInput, StopProjectVersionCommandOutput, RekognitionClientResolvedConfig> {
|
|
35
59
|
readonly input: StopProjectVersionCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface StopStreamProcessorCommandOutput extends StopStreamProcessorRes
|
|
|
29
29
|
* @see {@link StopStreamProcessorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to perform the action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerError} (server fault)
|
|
36
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
39
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
40
|
+
* operation again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
43
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
44
|
+
* limit, contact Amazon Rekognition.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
47
|
+
* <p>The specified resource is already being used.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
53
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class StopStreamProcessorCommand extends $Command<StopStreamProcessorCommandInput, StopStreamProcessorCommandOutput, RekognitionClientResolvedConfig> {
|
|
34
58
|
readonly input: StopStreamProcessorCommandInput;
|
|
@@ -33,6 +33,32 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
33
33
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You are not authorized to perform the action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
43
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
44
|
+
* operation again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
47
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
48
|
+
* limit, contact Amazon Rekognition.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
54
|
+
* <p></p>
|
|
55
|
+
* <p>The size of the collection exceeds the allowed limit. For more information,
|
|
56
|
+
* see Guidelines and quotas in Amazon Rekognition in the Amazon Rekognition Developer Guide. </p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
59
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
36
62
|
*/
|
|
37
63
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RekognitionClientResolvedConfig> {
|
|
38
64
|
readonly input: TagResourceCommandInput;
|
|
@@ -32,6 +32,27 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
32
32
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform the action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerError} (server fault)
|
|
39
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
43
|
+
* operation again.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
46
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
47
|
+
* limit, contact Amazon Rekognition.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
53
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
35
56
|
*/
|
|
36
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RekognitionClientResolvedConfig> {
|
|
37
58
|
readonly input: UntagResourceCommandInput;
|
|
@@ -50,6 +50,35 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR
|
|
|
50
50
|
* @see {@link UpdateDatasetEntriesCommandOutput} for command's `response` shape.
|
|
51
51
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
52
52
|
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>You are not authorized to perform the action.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServerError} (server fault)
|
|
57
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
60
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
61
|
+
* operation again.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
64
|
+
* <p>An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
|
|
65
|
+
* (<code>StartLabelDetection</code>, for example) will raise a <code>LimitExceededException</code> exception (HTTP status code: 400) until
|
|
66
|
+
* the number of concurrently running jobs is below the Amazon Rekognition service limit. </p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
69
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
70
|
+
* limit, contact Amazon Rekognition.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
73
|
+
* <p>The specified resource is already being used.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
76
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
79
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
53
82
|
*/
|
|
54
83
|
export declare class UpdateDatasetEntriesCommand extends $Command<UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput, RekognitionClientResolvedConfig> {
|
|
55
84
|
readonly input: UpdateDatasetEntriesCommandInput;
|
|
@@ -31,6 +31,27 @@ export interface UpdateStreamProcessorCommandOutput extends UpdateStreamProcesso
|
|
|
31
31
|
* @see {@link UpdateStreamProcessorCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to perform the action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerError} (server fault)
|
|
38
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
42
|
+
* operation again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
45
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
46
|
+
* limit, contact Amazon Rekognition.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
52
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
34
55
|
*/
|
|
35
56
|
export declare class UpdateStreamProcessorCommand extends $Command<UpdateStreamProcessorCommandInput, UpdateStreamProcessorCommandOutput, RekognitionClientResolvedConfig> {
|
|
36
57
|
readonly input: UpdateStreamProcessorCommandInput;
|
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.290.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",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.290.0",
|
|
56
56
|
"tslib": "^2.3.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|