@aws-sdk/client-rekognition 3.39.0 → 3.43.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/CHANGELOG.md +39 -0
- package/dist-cjs/Rekognition.js +105 -0
- package/dist-cjs/commands/CreateDatasetCommand.js +36 -0
- package/dist-cjs/commands/DeleteDatasetCommand.js +36 -0
- package/dist-cjs/commands/DescribeDatasetCommand.js +36 -0
- package/dist-cjs/commands/DistributeDatasetEntriesCommand.js +36 -0
- package/dist-cjs/commands/ListDatasetEntriesCommand.js +36 -0
- package/dist-cjs/commands/ListDatasetLabelsCommand.js +36 -0
- package/dist-cjs/commands/UpdateDatasetEntriesCommand.js +36 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoints.js +157 -24
- package/dist-cjs/models/models_0.js +170 -16
- package/dist-cjs/pagination/ListDatasetEntriesPaginator.js +35 -0
- package/dist-cjs/pagination/ListDatasetLabelsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1077 -54
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/Rekognition.js +105 -0
- package/dist-es/commands/CreateDatasetCommand.js +39 -0
- package/dist-es/commands/DeleteDatasetCommand.js +39 -0
- package/dist-es/commands/DescribeDatasetCommand.js +39 -0
- package/dist-es/commands/DistributeDatasetEntriesCommand.js +39 -0
- package/dist-es/commands/ListDatasetEntriesCommand.js +39 -0
- package/dist-es/commands/ListDatasetLabelsCommand.js +39 -0
- package/dist-es/commands/UpdateDatasetEntriesCommand.js +39 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoints.js +157 -24
- package/dist-es/models/models_0.js +117 -8
- package/dist-es/pagination/ListDatasetEntriesPaginator.js +74 -0
- package/dist-es/pagination/ListDatasetLabelsPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +1111 -51
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/Rekognition.d.ts +209 -29
- package/dist-types/RekognitionClient.d.ts +17 -2
- package/dist-types/commands/CompareFacesCommand.d.ts +1 -1
- package/dist-types/commands/CreateCollectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +59 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +3 -3
- package/dist-types/commands/CreateProjectVersionCommand.d.ts +33 -5
- package/dist-types/commands/CreateStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatasetCommand.d.ts +44 -0
- package/dist-types/commands/DeleteFacesCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProjectCommand.d.ts +5 -1
- package/dist-types/commands/DeleteProjectVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetCommand.d.ts +39 -0
- package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeProjectsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/DetectCustomLabelsCommand.d.ts +1 -1
- package/dist-types/commands/DetectFacesCommand.d.ts +1 -1
- package/dist-types/commands/DetectLabelsCommand.d.ts +1 -1
- package/dist-types/commands/DetectModerationLabelsCommand.d.ts +1 -1
- package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +1 -1
- package/dist-types/commands/DetectTextCommand.d.ts +1 -1
- package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +46 -0
- package/dist-types/commands/GetCelebrityInfoCommand.d.ts +1 -1
- package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +23 -18
- package/dist-types/commands/GetContentModerationCommand.d.ts +1 -1
- package/dist-types/commands/GetFaceDetectionCommand.d.ts +1 -1
- package/dist-types/commands/GetFaceSearchCommand.d.ts +1 -1
- package/dist-types/commands/GetLabelDetectionCommand.d.ts +1 -1
- package/dist-types/commands/GetPersonTrackingCommand.d.ts +1 -1
- package/dist-types/commands/GetSegmentDetectionCommand.d.ts +1 -1
- package/dist-types/commands/GetTextDetectionCommand.d.ts +1 -1
- package/dist-types/commands/IndexFacesCommand.d.ts +1 -1
- package/dist-types/commands/ListCollectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetEntriesCommand.d.ts +49 -0
- package/dist-types/commands/ListDatasetLabelsCommand.d.ts +40 -0
- package/dist-types/commands/ListFacesCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamProcessorsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +4 -4
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +1 -1
- package/dist-types/commands/SearchFacesCommand.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/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 +62 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +622 -51
- package/dist-types/pagination/ListDatasetEntriesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDatasetLabelsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +21 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/Rekognition.d.ts +35 -0
- package/dist-types/ts3.4/RekognitionClient.d.ts +13 -2
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DistributeDatasetEntriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDatasetEntriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDatasetLabelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDatasetEntriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +283 -23
- package/dist-types/ts3.4/pagination/ListDatasetEntriesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDatasetLabelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +21 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +24 -24
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "../commands/ListDatasetEntriesCommand";
|
|
3
|
+
import { RekognitionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListDatasetEntries(config: RekognitionPaginationConfiguration, input: ListDatasetEntriesCommandInput, ...additionalArguments: any): Paginator<ListDatasetEntriesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "../commands/ListDatasetLabelsCommand";
|
|
3
|
+
import { RekognitionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListDatasetLabels(config: RekognitionPaginationConfiguration, input: ListDatasetLabelsCommandInput, ...additionalArguments: any): Paginator<ListDatasetLabelsCommandOutput>;
|
|
@@ -10,5 +10,7 @@ export * from "./GetSegmentDetectionPaginator";
|
|
|
10
10
|
export * from "./GetTextDetectionPaginator";
|
|
11
11
|
export * from "./Interfaces";
|
|
12
12
|
export * from "./ListCollectionsPaginator";
|
|
13
|
+
export * from "./ListDatasetEntriesPaginator";
|
|
14
|
+
export * from "./ListDatasetLabelsPaginator";
|
|
13
15
|
export * from "./ListFacesPaginator";
|
|
14
16
|
export * from "./ListStreamProcessorsPaginator";
|
|
@@ -2,15 +2,18 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CompareFacesCommandInput, CompareFacesCommandOutput } from "../commands/CompareFacesCommand";
|
|
4
4
|
import { CreateCollectionCommandInput, CreateCollectionCommandOutput } from "../commands/CreateCollectionCommand";
|
|
5
|
+
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
|
|
5
6
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../commands/CreateProjectCommand";
|
|
6
7
|
import { CreateProjectVersionCommandInput, CreateProjectVersionCommandOutput } from "../commands/CreateProjectVersionCommand";
|
|
7
8
|
import { CreateStreamProcessorCommandInput, CreateStreamProcessorCommandOutput } from "../commands/CreateStreamProcessorCommand";
|
|
8
9
|
import { DeleteCollectionCommandInput, DeleteCollectionCommandOutput } from "../commands/DeleteCollectionCommand";
|
|
10
|
+
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
|
|
9
11
|
import { DeleteFacesCommandInput, DeleteFacesCommandOutput } from "../commands/DeleteFacesCommand";
|
|
10
12
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
11
13
|
import { DeleteProjectVersionCommandInput, DeleteProjectVersionCommandOutput } from "../commands/DeleteProjectVersionCommand";
|
|
12
14
|
import { DeleteStreamProcessorCommandInput, DeleteStreamProcessorCommandOutput } from "../commands/DeleteStreamProcessorCommand";
|
|
13
15
|
import { DescribeCollectionCommandInput, DescribeCollectionCommandOutput } from "../commands/DescribeCollectionCommand";
|
|
16
|
+
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "../commands/DescribeDatasetCommand";
|
|
14
17
|
import { DescribeProjectsCommandInput, DescribeProjectsCommandOutput } from "../commands/DescribeProjectsCommand";
|
|
15
18
|
import { DescribeProjectVersionsCommandInput, DescribeProjectVersionsCommandOutput } from "../commands/DescribeProjectVersionsCommand";
|
|
16
19
|
import { DescribeStreamProcessorCommandInput, DescribeStreamProcessorCommandOutput } from "../commands/DescribeStreamProcessorCommand";
|
|
@@ -20,6 +23,7 @@ import { DetectLabelsCommandInput, DetectLabelsCommandOutput } from "../commands
|
|
|
20
23
|
import { DetectModerationLabelsCommandInput, DetectModerationLabelsCommandOutput } from "../commands/DetectModerationLabelsCommand";
|
|
21
24
|
import { DetectProtectiveEquipmentCommandInput, DetectProtectiveEquipmentCommandOutput } from "../commands/DetectProtectiveEquipmentCommand";
|
|
22
25
|
import { DetectTextCommandInput, DetectTextCommandOutput } from "../commands/DetectTextCommand";
|
|
26
|
+
import { DistributeDatasetEntriesCommandInput, DistributeDatasetEntriesCommandOutput } from "../commands/DistributeDatasetEntriesCommand";
|
|
23
27
|
import { GetCelebrityInfoCommandInput, GetCelebrityInfoCommandOutput } from "../commands/GetCelebrityInfoCommand";
|
|
24
28
|
import { GetCelebrityRecognitionCommandInput, GetCelebrityRecognitionCommandOutput } from "../commands/GetCelebrityRecognitionCommand";
|
|
25
29
|
import { GetContentModerationCommandInput, GetContentModerationCommandOutput } from "../commands/GetContentModerationCommand";
|
|
@@ -31,6 +35,8 @@ import { GetSegmentDetectionCommandInput, GetSegmentDetectionCommandOutput } fro
|
|
|
31
35
|
import { GetTextDetectionCommandInput, GetTextDetectionCommandOutput } from "../commands/GetTextDetectionCommand";
|
|
32
36
|
import { IndexFacesCommandInput, IndexFacesCommandOutput } from "../commands/IndexFacesCommand";
|
|
33
37
|
import { ListCollectionsCommandInput, ListCollectionsCommandOutput } from "../commands/ListCollectionsCommand";
|
|
38
|
+
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "../commands/ListDatasetEntriesCommand";
|
|
39
|
+
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "../commands/ListDatasetLabelsCommand";
|
|
34
40
|
import { ListFacesCommandInput, ListFacesCommandOutput } from "../commands/ListFacesCommand";
|
|
35
41
|
import { ListStreamProcessorsCommandInput, ListStreamProcessorsCommandOutput } from "../commands/ListStreamProcessorsCommand";
|
|
36
42
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -51,17 +57,21 @@ import { StopProjectVersionCommandInput, StopProjectVersionCommandOutput } from
|
|
|
51
57
|
import { StopStreamProcessorCommandInput, StopStreamProcessorCommandOutput } from "../commands/StopStreamProcessorCommand";
|
|
52
58
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
53
59
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
60
|
+
import { UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput } from "../commands/UpdateDatasetEntriesCommand";
|
|
54
61
|
export declare const serializeAws_json1_1CompareFacesCommand: (input: CompareFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
62
|
export declare const serializeAws_json1_1CreateCollectionCommand: (input: CreateCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
export declare const serializeAws_json1_1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
64
|
export declare const serializeAws_json1_1CreateProjectCommand: (input: CreateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
65
|
export declare const serializeAws_json1_1CreateProjectVersionCommand: (input: CreateProjectVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
66
|
export declare const serializeAws_json1_1CreateStreamProcessorCommand: (input: CreateStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
67
|
export declare const serializeAws_json1_1DeleteCollectionCommand: (input: DeleteCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_json1_1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
69
|
export declare const serializeAws_json1_1DeleteFacesCommand: (input: DeleteFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
70
|
export declare const serializeAws_json1_1DeleteProjectCommand: (input: DeleteProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
71
|
export declare const serializeAws_json1_1DeleteProjectVersionCommand: (input: DeleteProjectVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
72
|
export declare const serializeAws_json1_1DeleteStreamProcessorCommand: (input: DeleteStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
73
|
export declare const serializeAws_json1_1DescribeCollectionCommand: (input: DescribeCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_1DescribeDatasetCommand: (input: DescribeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
75
|
export declare const serializeAws_json1_1DescribeProjectsCommand: (input: DescribeProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
76
|
export declare const serializeAws_json1_1DescribeProjectVersionsCommand: (input: DescribeProjectVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
77
|
export declare const serializeAws_json1_1DescribeStreamProcessorCommand: (input: DescribeStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -71,6 +81,7 @@ export declare const serializeAws_json1_1DetectLabelsCommand: (input: DetectLabe
|
|
|
71
81
|
export declare const serializeAws_json1_1DetectModerationLabelsCommand: (input: DetectModerationLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
82
|
export declare const serializeAws_json1_1DetectProtectiveEquipmentCommand: (input: DetectProtectiveEquipmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
83
|
export declare const serializeAws_json1_1DetectTextCommand: (input: DetectTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
export declare const serializeAws_json1_1DistributeDatasetEntriesCommand: (input: DistributeDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
85
|
export declare const serializeAws_json1_1GetCelebrityInfoCommand: (input: GetCelebrityInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
86
|
export declare const serializeAws_json1_1GetCelebrityRecognitionCommand: (input: GetCelebrityRecognitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
87
|
export declare const serializeAws_json1_1GetContentModerationCommand: (input: GetContentModerationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -82,6 +93,8 @@ export declare const serializeAws_json1_1GetSegmentDetectionCommand: (input: Get
|
|
|
82
93
|
export declare const serializeAws_json1_1GetTextDetectionCommand: (input: GetTextDetectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
94
|
export declare const serializeAws_json1_1IndexFacesCommand: (input: IndexFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
95
|
export declare const serializeAws_json1_1ListCollectionsCommand: (input: ListCollectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
export declare const serializeAws_json1_1ListDatasetEntriesCommand: (input: ListDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
+
export declare const serializeAws_json1_1ListDatasetLabelsCommand: (input: ListDatasetLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
98
|
export declare const serializeAws_json1_1ListFacesCommand: (input: ListFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
99
|
export declare const serializeAws_json1_1ListStreamProcessorsCommand: (input: ListStreamProcessorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
100
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -102,17 +115,21 @@ export declare const serializeAws_json1_1StopProjectVersionCommand: (input: Stop
|
|
|
102
115
|
export declare const serializeAws_json1_1StopStreamProcessorCommand: (input: StopStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
116
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
117
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1UpdateDatasetEntriesCommand: (input: UpdateDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
119
|
export declare const deserializeAws_json1_1CompareFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompareFacesCommandOutput>;
|
|
106
120
|
export declare const deserializeAws_json1_1CreateCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCollectionCommandOutput>;
|
|
121
|
+
export declare const deserializeAws_json1_1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
|
|
107
122
|
export declare const deserializeAws_json1_1CreateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectCommandOutput>;
|
|
108
123
|
export declare const deserializeAws_json1_1CreateProjectVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectVersionCommandOutput>;
|
|
109
124
|
export declare const deserializeAws_json1_1CreateStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamProcessorCommandOutput>;
|
|
110
125
|
export declare const deserializeAws_json1_1DeleteCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCollectionCommandOutput>;
|
|
126
|
+
export declare const deserializeAws_json1_1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
|
|
111
127
|
export declare const deserializeAws_json1_1DeleteFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFacesCommandOutput>;
|
|
112
128
|
export declare const deserializeAws_json1_1DeleteProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectCommandOutput>;
|
|
113
129
|
export declare const deserializeAws_json1_1DeleteProjectVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectVersionCommandOutput>;
|
|
114
130
|
export declare const deserializeAws_json1_1DeleteStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamProcessorCommandOutput>;
|
|
115
131
|
export declare const deserializeAws_json1_1DescribeCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCollectionCommandOutput>;
|
|
132
|
+
export declare const deserializeAws_json1_1DescribeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatasetCommandOutput>;
|
|
116
133
|
export declare const deserializeAws_json1_1DescribeProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProjectsCommandOutput>;
|
|
117
134
|
export declare const deserializeAws_json1_1DescribeProjectVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProjectVersionsCommandOutput>;
|
|
118
135
|
export declare const deserializeAws_json1_1DescribeStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamProcessorCommandOutput>;
|
|
@@ -122,6 +139,7 @@ export declare const deserializeAws_json1_1DetectLabelsCommand: (output: __HttpR
|
|
|
122
139
|
export declare const deserializeAws_json1_1DetectModerationLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectModerationLabelsCommandOutput>;
|
|
123
140
|
export declare const deserializeAws_json1_1DetectProtectiveEquipmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectProtectiveEquipmentCommandOutput>;
|
|
124
141
|
export declare const deserializeAws_json1_1DetectTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectTextCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_json1_1DistributeDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DistributeDatasetEntriesCommandOutput>;
|
|
125
143
|
export declare const deserializeAws_json1_1GetCelebrityInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCelebrityInfoCommandOutput>;
|
|
126
144
|
export declare const deserializeAws_json1_1GetCelebrityRecognitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCelebrityRecognitionCommandOutput>;
|
|
127
145
|
export declare const deserializeAws_json1_1GetContentModerationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContentModerationCommandOutput>;
|
|
@@ -133,6 +151,8 @@ export declare const deserializeAws_json1_1GetSegmentDetectionCommand: (output:
|
|
|
133
151
|
export declare const deserializeAws_json1_1GetTextDetectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTextDetectionCommandOutput>;
|
|
134
152
|
export declare const deserializeAws_json1_1IndexFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IndexFacesCommandOutput>;
|
|
135
153
|
export declare const deserializeAws_json1_1ListCollectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollectionsCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_1ListDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetEntriesCommandOutput>;
|
|
155
|
+
export declare const deserializeAws_json1_1ListDatasetLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetLabelsCommandOutput>;
|
|
136
156
|
export declare const deserializeAws_json1_1ListFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFacesCommandOutput>;
|
|
137
157
|
export declare const deserializeAws_json1_1ListStreamProcessorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamProcessorsCommandOutput>;
|
|
138
158
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
@@ -153,3 +173,4 @@ export declare const deserializeAws_json1_1StopProjectVersionCommand: (output: _
|
|
|
153
173
|
export declare const deserializeAws_json1_1StopStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamProcessorCommandOutput>;
|
|
154
174
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
155
175
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
176
|
+
export declare const deserializeAws_json1_1UpdateDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatasetEntriesCommandOutput>;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: RekognitionClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: RekognitionClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -18,6 +18,8 @@ export declare const getRuntimeConfig: (config: RekognitionClientConfig) => {
|
|
|
18
18
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
19
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
20
|
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
23
|
serviceId: string;
|
|
22
24
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { CompareFacesCommandInput, CompareFacesCommandOutput } from "./commands/CompareFacesCommand";
|
|
3
3
|
import { CreateCollectionCommandInput, CreateCollectionCommandOutput } from "./commands/CreateCollectionCommand";
|
|
4
|
+
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
4
5
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
5
6
|
import { CreateProjectVersionCommandInput, CreateProjectVersionCommandOutput } from "./commands/CreateProjectVersionCommand";
|
|
6
7
|
import { CreateStreamProcessorCommandInput, CreateStreamProcessorCommandOutput } from "./commands/CreateStreamProcessorCommand";
|
|
7
8
|
import { DeleteCollectionCommandInput, DeleteCollectionCommandOutput } from "./commands/DeleteCollectionCommand";
|
|
9
|
+
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
8
10
|
import { DeleteFacesCommandInput, DeleteFacesCommandOutput } from "./commands/DeleteFacesCommand";
|
|
9
11
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
10
12
|
import { DeleteProjectVersionCommandInput, DeleteProjectVersionCommandOutput } from "./commands/DeleteProjectVersionCommand";
|
|
11
13
|
import { DeleteStreamProcessorCommandInput, DeleteStreamProcessorCommandOutput } from "./commands/DeleteStreamProcessorCommand";
|
|
12
14
|
import { DescribeCollectionCommandInput, DescribeCollectionCommandOutput } from "./commands/DescribeCollectionCommand";
|
|
15
|
+
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
13
16
|
import { DescribeProjectsCommandInput, DescribeProjectsCommandOutput } from "./commands/DescribeProjectsCommand";
|
|
14
17
|
import { DescribeProjectVersionsCommandInput, DescribeProjectVersionsCommandOutput } from "./commands/DescribeProjectVersionsCommand";
|
|
15
18
|
import { DescribeStreamProcessorCommandInput, DescribeStreamProcessorCommandOutput } from "./commands/DescribeStreamProcessorCommand";
|
|
@@ -19,6 +22,7 @@ import { DetectLabelsCommandInput, DetectLabelsCommandOutput } from "./commands/
|
|
|
19
22
|
import { DetectModerationLabelsCommandInput, DetectModerationLabelsCommandOutput } from "./commands/DetectModerationLabelsCommand";
|
|
20
23
|
import { DetectProtectiveEquipmentCommandInput, DetectProtectiveEquipmentCommandOutput } from "./commands/DetectProtectiveEquipmentCommand";
|
|
21
24
|
import { DetectTextCommandInput, DetectTextCommandOutput } from "./commands/DetectTextCommand";
|
|
25
|
+
import { DistributeDatasetEntriesCommandInput, DistributeDatasetEntriesCommandOutput } from "./commands/DistributeDatasetEntriesCommand";
|
|
22
26
|
import { GetCelebrityInfoCommandInput, GetCelebrityInfoCommandOutput } from "./commands/GetCelebrityInfoCommand";
|
|
23
27
|
import { GetCelebrityRecognitionCommandInput, GetCelebrityRecognitionCommandOutput } from "./commands/GetCelebrityRecognitionCommand";
|
|
24
28
|
import { GetContentModerationCommandInput, GetContentModerationCommandOutput } from "./commands/GetContentModerationCommand";
|
|
@@ -30,6 +34,8 @@ import { GetSegmentDetectionCommandInput, GetSegmentDetectionCommandOutput } fro
|
|
|
30
34
|
import { GetTextDetectionCommandInput, GetTextDetectionCommandOutput } from "./commands/GetTextDetectionCommand";
|
|
31
35
|
import { IndexFacesCommandInput, IndexFacesCommandOutput } from "./commands/IndexFacesCommand";
|
|
32
36
|
import { ListCollectionsCommandInput, ListCollectionsCommandOutput } from "./commands/ListCollectionsCommand";
|
|
37
|
+
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "./commands/ListDatasetEntriesCommand";
|
|
38
|
+
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "./commands/ListDatasetLabelsCommand";
|
|
33
39
|
import { ListFacesCommandInput, ListFacesCommandOutput } from "./commands/ListFacesCommand";
|
|
34
40
|
import { ListStreamProcessorsCommandInput, ListStreamProcessorsCommandOutput } from "./commands/ListStreamProcessorsCommand";
|
|
35
41
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
@@ -50,6 +56,7 @@ import { StopProjectVersionCommandInput, StopProjectVersionCommandOutput } from
|
|
|
50
56
|
import { StopStreamProcessorCommandInput, StopStreamProcessorCommandOutput } from "./commands/StopStreamProcessorCommand";
|
|
51
57
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
52
58
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
59
|
+
import { UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput } from "./commands/UpdateDatasetEntriesCommand";
|
|
53
60
|
import { RekognitionClient } from "./RekognitionClient";
|
|
54
61
|
|
|
55
62
|
export declare class Rekognition extends RekognitionClient {
|
|
@@ -62,6 +69,10 @@ export declare class Rekognition extends RekognitionClient {
|
|
|
62
69
|
createCollection(args: CreateCollectionCommandInput, cb: (err: any, data?: CreateCollectionCommandOutput) => void): void;
|
|
63
70
|
createCollection(args: CreateCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCollectionCommandOutput) => void): void;
|
|
64
71
|
|
|
72
|
+
createDataset(args: CreateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetCommandOutput>;
|
|
73
|
+
createDataset(args: CreateDatasetCommandInput, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
74
|
+
createDataset(args: CreateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
75
|
+
|
|
65
76
|
createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
|
|
66
77
|
createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
67
78
|
createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
@@ -78,6 +89,10 @@ export declare class Rekognition extends RekognitionClient {
|
|
|
78
89
|
deleteCollection(args: DeleteCollectionCommandInput, cb: (err: any, data?: DeleteCollectionCommandOutput) => void): void;
|
|
79
90
|
deleteCollection(args: DeleteCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCollectionCommandOutput) => void): void;
|
|
80
91
|
|
|
92
|
+
deleteDataset(args: DeleteDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDatasetCommandOutput>;
|
|
93
|
+
deleteDataset(args: DeleteDatasetCommandInput, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
94
|
+
deleteDataset(args: DeleteDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
95
|
+
|
|
81
96
|
deleteFaces(args: DeleteFacesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFacesCommandOutput>;
|
|
82
97
|
deleteFaces(args: DeleteFacesCommandInput, cb: (err: any, data?: DeleteFacesCommandOutput) => void): void;
|
|
83
98
|
deleteFaces(args: DeleteFacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFacesCommandOutput) => void): void;
|
|
@@ -98,6 +113,10 @@ export declare class Rekognition extends RekognitionClient {
|
|
|
98
113
|
describeCollection(args: DescribeCollectionCommandInput, cb: (err: any, data?: DescribeCollectionCommandOutput) => void): void;
|
|
99
114
|
describeCollection(args: DescribeCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCollectionCommandOutput) => void): void;
|
|
100
115
|
|
|
116
|
+
describeDataset(args: DescribeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDatasetCommandOutput>;
|
|
117
|
+
describeDataset(args: DescribeDatasetCommandInput, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
118
|
+
describeDataset(args: DescribeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
119
|
+
|
|
101
120
|
describeProjects(args: DescribeProjectsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProjectsCommandOutput>;
|
|
102
121
|
describeProjects(args: DescribeProjectsCommandInput, cb: (err: any, data?: DescribeProjectsCommandOutput) => void): void;
|
|
103
122
|
describeProjects(args: DescribeProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProjectsCommandOutput) => void): void;
|
|
@@ -134,6 +153,10 @@ export declare class Rekognition extends RekognitionClient {
|
|
|
134
153
|
detectText(args: DetectTextCommandInput, cb: (err: any, data?: DetectTextCommandOutput) => void): void;
|
|
135
154
|
detectText(args: DetectTextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetectTextCommandOutput) => void): void;
|
|
136
155
|
|
|
156
|
+
distributeDatasetEntries(args: DistributeDatasetEntriesCommandInput, options?: __HttpHandlerOptions): Promise<DistributeDatasetEntriesCommandOutput>;
|
|
157
|
+
distributeDatasetEntries(args: DistributeDatasetEntriesCommandInput, cb: (err: any, data?: DistributeDatasetEntriesCommandOutput) => void): void;
|
|
158
|
+
distributeDatasetEntries(args: DistributeDatasetEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DistributeDatasetEntriesCommandOutput) => void): void;
|
|
159
|
+
|
|
137
160
|
getCelebrityInfo(args: GetCelebrityInfoCommandInput, options?: __HttpHandlerOptions): Promise<GetCelebrityInfoCommandOutput>;
|
|
138
161
|
getCelebrityInfo(args: GetCelebrityInfoCommandInput, cb: (err: any, data?: GetCelebrityInfoCommandOutput) => void): void;
|
|
139
162
|
getCelebrityInfo(args: GetCelebrityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCelebrityInfoCommandOutput) => void): void;
|
|
@@ -178,6 +201,14 @@ export declare class Rekognition extends RekognitionClient {
|
|
|
178
201
|
listCollections(args: ListCollectionsCommandInput, cb: (err: any, data?: ListCollectionsCommandOutput) => void): void;
|
|
179
202
|
listCollections(args: ListCollectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCollectionsCommandOutput) => void): void;
|
|
180
203
|
|
|
204
|
+
listDatasetEntries(args: ListDatasetEntriesCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetEntriesCommandOutput>;
|
|
205
|
+
listDatasetEntries(args: ListDatasetEntriesCommandInput, cb: (err: any, data?: ListDatasetEntriesCommandOutput) => void): void;
|
|
206
|
+
listDatasetEntries(args: ListDatasetEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetEntriesCommandOutput) => void): void;
|
|
207
|
+
|
|
208
|
+
listDatasetLabels(args: ListDatasetLabelsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetLabelsCommandOutput>;
|
|
209
|
+
listDatasetLabels(args: ListDatasetLabelsCommandInput, cb: (err: any, data?: ListDatasetLabelsCommandOutput) => void): void;
|
|
210
|
+
listDatasetLabels(args: ListDatasetLabelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetLabelsCommandOutput) => void): void;
|
|
211
|
+
|
|
181
212
|
listFaces(args: ListFacesCommandInput, options?: __HttpHandlerOptions): Promise<ListFacesCommandOutput>;
|
|
182
213
|
listFaces(args: ListFacesCommandInput, cb: (err: any, data?: ListFacesCommandOutput) => void): void;
|
|
183
214
|
listFaces(args: ListFacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFacesCommandOutput) => void): void;
|
|
@@ -257,4 +288,8 @@ export declare class Rekognition extends RekognitionClient {
|
|
|
257
288
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
258
289
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
259
290
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
291
|
+
|
|
292
|
+
updateDatasetEntries(args: UpdateDatasetEntriesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDatasetEntriesCommandOutput>;
|
|
293
|
+
updateDatasetEntries(args: UpdateDatasetEntriesCommandInput, cb: (err: any, data?: UpdateDatasetEntriesCommandOutput) => void): void;
|
|
294
|
+
updateDatasetEntries(args: UpdateDatasetEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDatasetEntriesCommandOutput) => void): void;
|
|
260
295
|
}
|
|
@@ -8,15 +8,18 @@ import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, Smith
|
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CompareFacesCommandInput, CompareFacesCommandOutput } from "./commands/CompareFacesCommand";
|
|
10
10
|
import { CreateCollectionCommandInput, CreateCollectionCommandOutput } from "./commands/CreateCollectionCommand";
|
|
11
|
+
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
11
12
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
12
13
|
import { CreateProjectVersionCommandInput, CreateProjectVersionCommandOutput } from "./commands/CreateProjectVersionCommand";
|
|
13
14
|
import { CreateStreamProcessorCommandInput, CreateStreamProcessorCommandOutput } from "./commands/CreateStreamProcessorCommand";
|
|
14
15
|
import { DeleteCollectionCommandInput, DeleteCollectionCommandOutput } from "./commands/DeleteCollectionCommand";
|
|
16
|
+
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
15
17
|
import { DeleteFacesCommandInput, DeleteFacesCommandOutput } from "./commands/DeleteFacesCommand";
|
|
16
18
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
17
19
|
import { DeleteProjectVersionCommandInput, DeleteProjectVersionCommandOutput } from "./commands/DeleteProjectVersionCommand";
|
|
18
20
|
import { DeleteStreamProcessorCommandInput, DeleteStreamProcessorCommandOutput } from "./commands/DeleteStreamProcessorCommand";
|
|
19
21
|
import { DescribeCollectionCommandInput, DescribeCollectionCommandOutput } from "./commands/DescribeCollectionCommand";
|
|
22
|
+
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
20
23
|
import { DescribeProjectsCommandInput, DescribeProjectsCommandOutput } from "./commands/DescribeProjectsCommand";
|
|
21
24
|
import { DescribeProjectVersionsCommandInput, DescribeProjectVersionsCommandOutput } from "./commands/DescribeProjectVersionsCommand";
|
|
22
25
|
import { DescribeStreamProcessorCommandInput, DescribeStreamProcessorCommandOutput } from "./commands/DescribeStreamProcessorCommand";
|
|
@@ -26,6 +29,7 @@ import { DetectLabelsCommandInput, DetectLabelsCommandOutput } from "./commands/
|
|
|
26
29
|
import { DetectModerationLabelsCommandInput, DetectModerationLabelsCommandOutput } from "./commands/DetectModerationLabelsCommand";
|
|
27
30
|
import { DetectProtectiveEquipmentCommandInput, DetectProtectiveEquipmentCommandOutput } from "./commands/DetectProtectiveEquipmentCommand";
|
|
28
31
|
import { DetectTextCommandInput, DetectTextCommandOutput } from "./commands/DetectTextCommand";
|
|
32
|
+
import { DistributeDatasetEntriesCommandInput, DistributeDatasetEntriesCommandOutput } from "./commands/DistributeDatasetEntriesCommand";
|
|
29
33
|
import { GetCelebrityInfoCommandInput, GetCelebrityInfoCommandOutput } from "./commands/GetCelebrityInfoCommand";
|
|
30
34
|
import { GetCelebrityRecognitionCommandInput, GetCelebrityRecognitionCommandOutput } from "./commands/GetCelebrityRecognitionCommand";
|
|
31
35
|
import { GetContentModerationCommandInput, GetContentModerationCommandOutput } from "./commands/GetContentModerationCommand";
|
|
@@ -37,6 +41,8 @@ import { GetSegmentDetectionCommandInput, GetSegmentDetectionCommandOutput } fro
|
|
|
37
41
|
import { GetTextDetectionCommandInput, GetTextDetectionCommandOutput } from "./commands/GetTextDetectionCommand";
|
|
38
42
|
import { IndexFacesCommandInput, IndexFacesCommandOutput } from "./commands/IndexFacesCommand";
|
|
39
43
|
import { ListCollectionsCommandInput, ListCollectionsCommandOutput } from "./commands/ListCollectionsCommand";
|
|
44
|
+
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "./commands/ListDatasetEntriesCommand";
|
|
45
|
+
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "./commands/ListDatasetLabelsCommand";
|
|
40
46
|
import { ListFacesCommandInput, ListFacesCommandOutput } from "./commands/ListFacesCommand";
|
|
41
47
|
import { ListStreamProcessorsCommandInput, ListStreamProcessorsCommandOutput } from "./commands/ListStreamProcessorsCommand";
|
|
42
48
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
@@ -57,8 +63,9 @@ import { StopProjectVersionCommandInput, StopProjectVersionCommandOutput } from
|
|
|
57
63
|
import { StopStreamProcessorCommandInput, StopStreamProcessorCommandOutput } from "./commands/StopStreamProcessorCommand";
|
|
58
64
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
59
65
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
60
|
-
|
|
61
|
-
export declare type
|
|
66
|
+
import { UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput } from "./commands/UpdateDatasetEntriesCommand";
|
|
67
|
+
export declare type ServiceInputTypes = CompareFacesCommandInput | CreateCollectionCommandInput | CreateDatasetCommandInput | CreateProjectCommandInput | CreateProjectVersionCommandInput | CreateStreamProcessorCommandInput | DeleteCollectionCommandInput | DeleteDatasetCommandInput | DeleteFacesCommandInput | DeleteProjectCommandInput | DeleteProjectVersionCommandInput | DeleteStreamProcessorCommandInput | DescribeCollectionCommandInput | DescribeDatasetCommandInput | DescribeProjectVersionsCommandInput | DescribeProjectsCommandInput | DescribeStreamProcessorCommandInput | DetectCustomLabelsCommandInput | DetectFacesCommandInput | DetectLabelsCommandInput | DetectModerationLabelsCommandInput | DetectProtectiveEquipmentCommandInput | DetectTextCommandInput | DistributeDatasetEntriesCommandInput | GetCelebrityInfoCommandInput | GetCelebrityRecognitionCommandInput | GetContentModerationCommandInput | GetFaceDetectionCommandInput | GetFaceSearchCommandInput | GetLabelDetectionCommandInput | GetPersonTrackingCommandInput | GetSegmentDetectionCommandInput | GetTextDetectionCommandInput | IndexFacesCommandInput | ListCollectionsCommandInput | ListDatasetEntriesCommandInput | ListDatasetLabelsCommandInput | ListFacesCommandInput | ListStreamProcessorsCommandInput | ListTagsForResourceCommandInput | RecognizeCelebritiesCommandInput | SearchFacesByImageCommandInput | SearchFacesCommandInput | StartCelebrityRecognitionCommandInput | StartContentModerationCommandInput | StartFaceDetectionCommandInput | StartFaceSearchCommandInput | StartLabelDetectionCommandInput | StartPersonTrackingCommandInput | StartProjectVersionCommandInput | StartSegmentDetectionCommandInput | StartStreamProcessorCommandInput | StartTextDetectionCommandInput | StopProjectVersionCommandInput | StopStreamProcessorCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatasetEntriesCommandInput;
|
|
68
|
+
export declare type ServiceOutputTypes = CompareFacesCommandOutput | CreateCollectionCommandOutput | CreateDatasetCommandOutput | CreateProjectCommandOutput | CreateProjectVersionCommandOutput | CreateStreamProcessorCommandOutput | DeleteCollectionCommandOutput | DeleteDatasetCommandOutput | DeleteFacesCommandOutput | DeleteProjectCommandOutput | DeleteProjectVersionCommandOutput | DeleteStreamProcessorCommandOutput | DescribeCollectionCommandOutput | DescribeDatasetCommandOutput | DescribeProjectVersionsCommandOutput | DescribeProjectsCommandOutput | DescribeStreamProcessorCommandOutput | DetectCustomLabelsCommandOutput | DetectFacesCommandOutput | DetectLabelsCommandOutput | DetectModerationLabelsCommandOutput | DetectProtectiveEquipmentCommandOutput | DetectTextCommandOutput | DistributeDatasetEntriesCommandOutput | GetCelebrityInfoCommandOutput | GetCelebrityRecognitionCommandOutput | GetContentModerationCommandOutput | GetFaceDetectionCommandOutput | GetFaceSearchCommandOutput | GetLabelDetectionCommandOutput | GetPersonTrackingCommandOutput | GetSegmentDetectionCommandOutput | GetTextDetectionCommandOutput | IndexFacesCommandOutput | ListCollectionsCommandOutput | ListDatasetEntriesCommandOutput | ListDatasetLabelsCommandOutput | ListFacesCommandOutput | ListStreamProcessorsCommandOutput | ListTagsForResourceCommandOutput | RecognizeCelebritiesCommandOutput | SearchFacesByImageCommandOutput | SearchFacesCommandOutput | StartCelebrityRecognitionCommandOutput | StartContentModerationCommandOutput | StartFaceDetectionCommandOutput | StartFaceSearchCommandOutput | StartLabelDetectionCommandOutput | StartPersonTrackingCommandOutput | StartProjectVersionCommandOutput | StartSegmentDetectionCommandOutput | StartStreamProcessorCommandOutput | StartTextDetectionCommandOutput | StopProjectVersionCommandOutput | StopStreamProcessorCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatasetEntriesCommandOutput;
|
|
62
69
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
63
70
|
|
|
64
71
|
requestHandler?: __HttpHandler;
|
|
@@ -89,6 +96,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
89
96
|
|
|
90
97
|
logger?: __Logger;
|
|
91
98
|
|
|
99
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
100
|
+
|
|
101
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
102
|
+
|
|
92
103
|
serviceId?: string;
|
|
93
104
|
|
|
94
105
|
region?: string | __Provider<string>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface CreateDatasetCommandInput extends CreateDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDatasetCommandInput;
|
|
12
|
+
constructor(input: CreateDatasetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDatasetCommandInput, CreateDatasetCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteDatasetCommandInput;
|
|
12
|
+
constructor(input: DeleteDatasetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatasetCommandInput, DeleteDatasetCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeDatasetCommandInput;
|
|
12
|
+
constructor(input: DescribeDatasetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDatasetCommandInput, DescribeDatasetCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DistributeDatasetEntriesRequest, DistributeDatasetEntriesResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface DistributeDatasetEntriesCommandInput extends DistributeDatasetEntriesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DistributeDatasetEntriesCommandOutput extends DistributeDatasetEntriesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DistributeDatasetEntriesCommand extends $Command<DistributeDatasetEntriesCommandInput, DistributeDatasetEntriesCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: DistributeDatasetEntriesCommandInput;
|
|
12
|
+
constructor(input: DistributeDatasetEntriesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DistributeDatasetEntriesCommandInput, DistributeDatasetEntriesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListDatasetEntriesRequest, ListDatasetEntriesResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface ListDatasetEntriesCommandInput extends ListDatasetEntriesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDatasetEntriesCommandOutput extends ListDatasetEntriesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListDatasetEntriesCommand extends $Command<ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: ListDatasetEntriesCommandInput;
|
|
12
|
+
constructor(input: ListDatasetEntriesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListDatasetLabelsRequest, ListDatasetLabelsResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface ListDatasetLabelsCommandInput extends ListDatasetLabelsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDatasetLabelsCommandOutput extends ListDatasetLabelsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListDatasetLabelsCommand extends $Command<ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: ListDatasetLabelsCommandInput;
|
|
12
|
+
constructor(input: ListDatasetLabelsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { UpdateDatasetEntriesRequest, UpdateDatasetEntriesResponse } from "../models/models_0";
|
|
4
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
5
|
+
export interface UpdateDatasetEntriesCommandInput extends UpdateDatasetEntriesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateDatasetEntriesCommand extends $Command<UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput, RekognitionClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateDatasetEntriesCommandInput;
|
|
12
|
+
constructor(input: UpdateDatasetEntriesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
export * from "./CompareFacesCommand";
|
|
2
2
|
export * from "./CreateCollectionCommand";
|
|
3
|
+
export * from "./CreateDatasetCommand";
|
|
3
4
|
export * from "./CreateProjectCommand";
|
|
4
5
|
export * from "./CreateProjectVersionCommand";
|
|
5
6
|
export * from "./CreateStreamProcessorCommand";
|
|
6
7
|
export * from "./DeleteCollectionCommand";
|
|
8
|
+
export * from "./DeleteDatasetCommand";
|
|
7
9
|
export * from "./DeleteFacesCommand";
|
|
8
10
|
export * from "./DeleteProjectCommand";
|
|
9
11
|
export * from "./DeleteProjectVersionCommand";
|
|
10
12
|
export * from "./DeleteStreamProcessorCommand";
|
|
11
13
|
export * from "./DescribeCollectionCommand";
|
|
14
|
+
export * from "./DescribeDatasetCommand";
|
|
12
15
|
export * from "./DescribeProjectVersionsCommand";
|
|
13
16
|
export * from "./DescribeProjectsCommand";
|
|
14
17
|
export * from "./DescribeStreamProcessorCommand";
|
|
@@ -18,6 +21,7 @@ export * from "./DetectLabelsCommand";
|
|
|
18
21
|
export * from "./DetectModerationLabelsCommand";
|
|
19
22
|
export * from "./DetectProtectiveEquipmentCommand";
|
|
20
23
|
export * from "./DetectTextCommand";
|
|
24
|
+
export * from "./DistributeDatasetEntriesCommand";
|
|
21
25
|
export * from "./GetCelebrityInfoCommand";
|
|
22
26
|
export * from "./GetCelebrityRecognitionCommand";
|
|
23
27
|
export * from "./GetContentModerationCommand";
|
|
@@ -29,6 +33,8 @@ export * from "./GetSegmentDetectionCommand";
|
|
|
29
33
|
export * from "./GetTextDetectionCommand";
|
|
30
34
|
export * from "./IndexFacesCommand";
|
|
31
35
|
export * from "./ListCollectionsCommand";
|
|
36
|
+
export * from "./ListDatasetEntriesCommand";
|
|
37
|
+
export * from "./ListDatasetLabelsCommand";
|
|
32
38
|
export * from "./ListFacesCommand";
|
|
33
39
|
export * from "./ListStreamProcessorsCommand";
|
|
34
40
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -49,3 +55,4 @@ export * from "./StopProjectVersionCommand";
|
|
|
49
55
|
export * from "./StopStreamProcessorCommand";
|
|
50
56
|
export * from "./TagResourceCommand";
|
|
51
57
|
export * from "./UntagResourceCommand";
|
|
58
|
+
export * from "./UpdateDatasetEntriesCommand";
|