@aws-sdk/client-rekognition 3.279.0 → 3.282.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/README.md +507 -0
- package/dist-types/commands/CompareFacesCommand.d.ts +6 -0
- package/dist-types/commands/CopyProjectVersionCommand.d.ts +6 -0
- package/dist-types/commands/CreateCollectionCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +6 -0
- package/dist-types/commands/CreateProjectVersionCommand.d.ts +6 -0
- package/dist-types/commands/CreateStreamProcessorCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCollectionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFacesCommand.d.ts +6 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +6 -0
- package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteProjectVersionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +6 -0
- package/dist-types/commands/DescribeCollectionCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeProjectsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +6 -0
- package/dist-types/commands/DetectCustomLabelsCommand.d.ts +6 -0
- package/dist-types/commands/DetectFacesCommand.d.ts +6 -0
- package/dist-types/commands/DetectLabelsCommand.d.ts +6 -0
- package/dist-types/commands/DetectModerationLabelsCommand.d.ts +6 -0
- package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +6 -0
- package/dist-types/commands/DetectTextCommand.d.ts +6 -0
- package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +6 -0
- package/dist-types/commands/GetCelebrityInfoCommand.d.ts +6 -0
- package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +6 -0
- package/dist-types/commands/GetContentModerationCommand.d.ts +6 -0
- package/dist-types/commands/GetFaceDetectionCommand.d.ts +6 -0
- package/dist-types/commands/GetFaceSearchCommand.d.ts +6 -0
- package/dist-types/commands/GetLabelDetectionCommand.d.ts +6 -0
- package/dist-types/commands/GetPersonTrackingCommand.d.ts +6 -0
- package/dist-types/commands/GetSegmentDetectionCommand.d.ts +6 -0
- package/dist-types/commands/GetTextDetectionCommand.d.ts +6 -0
- package/dist-types/commands/IndexFacesCommand.d.ts +6 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetEntriesCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetLabelsCommand.d.ts +6 -0
- package/dist-types/commands/ListFacesCommand.d.ts +6 -0
- package/dist-types/commands/ListProjectPoliciesCommand.d.ts +6 -0
- package/dist-types/commands/ListStreamProcessorsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/PutProjectPolicyCommand.d.ts +6 -0
- package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +6 -0
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +6 -0
- package/dist-types/commands/SearchFacesCommand.d.ts +6 -0
- package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +6 -0
- package/dist-types/commands/StartContentModerationCommand.d.ts +6 -0
- package/dist-types/commands/StartFaceDetectionCommand.d.ts +6 -0
- package/dist-types/commands/StartFaceSearchCommand.d.ts +6 -0
- package/dist-types/commands/StartLabelDetectionCommand.d.ts +6 -0
- package/dist-types/commands/StartPersonTrackingCommand.d.ts +6 -0
- package/dist-types/commands/StartProjectVersionCommand.d.ts +6 -0
- package/dist-types/commands/StartSegmentDetectionCommand.d.ts +6 -0
- package/dist-types/commands/StartStreamProcessorCommand.d.ts +6 -0
- package/dist-types/commands/StartTextDetectionCommand.d.ts +6 -0
- package/dist-types/commands/StopProjectVersionCommand.d.ts +6 -0
- package/dist-types/commands/StopStreamProcessorCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +6 -0
- package/package.json +17 -17
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { SearchFacesRequest, SearchFacesResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SearchFacesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SearchFacesCommandInput extends SearchFacesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SearchFacesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SearchFacesCommandOutput extends SearchFacesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartCelebrityRecognitionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartCelebrityRecognitionCommandInput extends StartCelebrityRecognitionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartCelebrityRecognitionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartCelebrityRecognitionCommandOutput extends StartCelebrityRecognitionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartContentModerationRequest, StartContentModerationResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartContentModerationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartContentModerationCommandInput extends StartContentModerationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartContentModerationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartContentModerationCommandOutput extends StartContentModerationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartFaceDetectionRequest, StartFaceDetectionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartFaceDetectionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartFaceDetectionCommandInput extends StartFaceDetectionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartFaceDetectionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartFaceDetectionCommandOutput extends StartFaceDetectionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartFaceSearchRequest, StartFaceSearchResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartFaceSearchCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartFaceSearchCommandInput extends StartFaceSearchRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartFaceSearchCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartFaceSearchCommandOutput extends StartFaceSearchResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartLabelDetectionRequest, StartLabelDetectionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartLabelDetectionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartLabelDetectionCommandInput extends StartLabelDetectionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartLabelDetectionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartLabelDetectionCommandOutput extends StartLabelDetectionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartPersonTrackingRequest, StartPersonTrackingResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartPersonTrackingCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartPersonTrackingCommandInput extends StartPersonTrackingRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartPersonTrackingCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartPersonTrackingCommandOutput extends StartPersonTrackingResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartProjectVersionRequest, StartProjectVersionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartProjectVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartProjectVersionCommandInput extends StartProjectVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartProjectVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartProjectVersionCommandOutput extends StartProjectVersionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartSegmentDetectionRequest, StartSegmentDetectionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartSegmentDetectionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartSegmentDetectionCommandInput extends StartSegmentDetectionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartSegmentDetectionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartSegmentDetectionCommandOutput extends StartSegmentDetectionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartStreamProcessorRequest, StartStreamProcessorResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartStreamProcessorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartStreamProcessorCommandInput extends StartStreamProcessorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartStreamProcessorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartStreamProcessorCommandOutput extends StartStreamProcessorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StartTextDetectionRequest, StartTextDetectionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartTextDetectionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartTextDetectionCommandInput extends StartTextDetectionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartTextDetectionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartTextDetectionCommandOutput extends StartTextDetectionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StopProjectVersionRequest, StopProjectVersionResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StopProjectVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StopProjectVersionCommandInput extends StopProjectVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StopProjectVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StopProjectVersionCommandOutput extends StopProjectVersionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { StopStreamProcessorRequest, StopStreamProcessorResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StopStreamProcessorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StopStreamProcessorCommandInput extends StopStreamProcessorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StopStreamProcessorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StopStreamProcessorCommandOutput extends StopStreamProcessorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateDatasetEntriesRequest, UpdateDatasetEntriesResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateDatasetEntriesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateDatasetEntriesCommandInput extends UpdateDatasetEntriesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateDatasetEntriesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateStreamProcessorRequest, UpdateStreamProcessorResponse } from "../models/models_0";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateStreamProcessorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateStreamProcessorCommandInput extends UpdateStreamProcessorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateStreamProcessorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateStreamProcessorCommandOutput extends UpdateStreamProcessorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
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.282.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,25 +20,25 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.282.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.282.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.282.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.282.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.282.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.282.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"@aws-sdk/util-waiter": "3.272.0",
|
|
56
56
|
"tslib": "^2.3.1"
|