@aws-sdk/client-rekognition 3.350.0 → 3.351.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 +98 -7
- package/dist-cjs/Rekognition.js +14 -0
- package/dist-cjs/commands/AssociateFacesCommand.js +46 -0
- package/dist-cjs/commands/CreateUserCommand.js +46 -0
- package/dist-cjs/commands/DeleteUserCommand.js +46 -0
- package/dist-cjs/commands/DisassociateFacesCommand.js +46 -0
- package/dist-cjs/commands/ListUsersCommand.js +46 -0
- package/dist-cjs/commands/SearchUsersByImageCommand.js +46 -0
- package/dist-cjs/commands/SearchUsersCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +159 -130
- package/dist-cjs/models/models_1.js +18 -1
- package/dist-cjs/pagination/ListUsersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +565 -4
- package/dist-es/Rekognition.js +14 -0
- package/dist-es/commands/AssociateFacesCommand.js +42 -0
- package/dist-es/commands/CreateUserCommand.js +42 -0
- package/dist-es/commands/DeleteUserCommand.js +42 -0
- package/dist-es/commands/DisassociateFacesCommand.js +42 -0
- package/dist-es/commands/ListUsersCommand.js +42 -0
- package/dist-es/commands/SearchUsersByImageCommand.js +42 -0
- package/dist-es/commands/SearchUsersCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +149 -120
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/pagination/ListUsersPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +548 -1
- package/dist-types/Rekognition.d.ts +84 -0
- package/dist-types/RekognitionClient.d.ts +44 -2
- package/dist-types/commands/AssociateFacesCommand.d.ts +158 -0
- package/dist-types/commands/CreateUserCommand.d.ts +114 -0
- package/dist-types/commands/DeleteFacesCommand.d.ts +9 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +106 -0
- package/dist-types/commands/DescribeCollectionCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateFacesCommand.d.ts +128 -0
- package/dist-types/commands/GetFaceSearchCommand.d.ts +1 -0
- package/dist-types/commands/IndexFacesCommand.d.ts +1 -0
- package/dist-types/commands/ListFacesCommand.d.ts +5 -0
- package/dist-types/commands/ListUsersCommand.d.ts +108 -0
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +1 -0
- package/dist-types/commands/SearchFacesCommand.d.ts +1 -0
- package/dist-types/commands/SearchUsersByImageCommand.d.ts +294 -0
- package/dist-types/commands/SearchUsersCommand.d.ts +117 -0
- package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +2 -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/index.d.ts +7 -0
- package/dist-types/index.d.ts +35 -0
- package/dist-types/models/models_0.d.ts +668 -604
- package/dist-types/models/models_1.d.ts +562 -1
- package/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
- package/dist-types/ts3.4/Rekognition.d.ts +119 -0
- package/dist-types/ts3.4/RekognitionClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateFacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DisassociateFacesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/SearchUsersByImageCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/StartCelebrityRecognitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartContentModerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartFaceDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartFaceSearchCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartLabelDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPersonTrackingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartProjectVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartSegmentDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartStreamProcessorCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTextDetectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopProjectVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopStreamProcessorCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +236 -206
- package/dist-types/ts3.4/models/models_1.d.ts +150 -0
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
- package/package.json +4 -2
|
@@ -1,9 +1,159 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
1
2
|
import {
|
|
3
|
+
BlackFrame,
|
|
2
4
|
ConnectedHomeSettingsForUpdate,
|
|
3
5
|
DatasetChanges,
|
|
6
|
+
DetectionFilter,
|
|
7
|
+
FaceAttributes,
|
|
8
|
+
KinesisVideoStreamStartSelector,
|
|
9
|
+
LabelDetectionFeatureName,
|
|
10
|
+
LabelDetectionSettings,
|
|
11
|
+
NotificationChannel,
|
|
12
|
+
ProjectVersionStatus,
|
|
4
13
|
RegionOfInterest,
|
|
14
|
+
SegmentType,
|
|
5
15
|
StreamProcessorDataSharingPreference,
|
|
16
|
+
Video,
|
|
6
17
|
} from "./models_0";
|
|
18
|
+
import { RekognitionServiceException as __BaseException } from "./RekognitionServiceException";
|
|
19
|
+
export interface StartCelebrityRecognitionResponse {
|
|
20
|
+
JobId?: string;
|
|
21
|
+
}
|
|
22
|
+
export declare class VideoTooLargeException extends __BaseException {
|
|
23
|
+
readonly name: "VideoTooLargeException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message?: string;
|
|
26
|
+
Code?: string;
|
|
27
|
+
Logref?: string;
|
|
28
|
+
constructor(
|
|
29
|
+
opts: __ExceptionOptionType<VideoTooLargeException, __BaseException>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export interface StartContentModerationRequest {
|
|
33
|
+
Video: Video | undefined;
|
|
34
|
+
MinConfidence?: number;
|
|
35
|
+
ClientRequestToken?: string;
|
|
36
|
+
NotificationChannel?: NotificationChannel;
|
|
37
|
+
JobTag?: string;
|
|
38
|
+
}
|
|
39
|
+
export interface StartContentModerationResponse {
|
|
40
|
+
JobId?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface StartFaceDetectionRequest {
|
|
43
|
+
Video: Video | undefined;
|
|
44
|
+
ClientRequestToken?: string;
|
|
45
|
+
NotificationChannel?: NotificationChannel;
|
|
46
|
+
FaceAttributes?: FaceAttributes | string;
|
|
47
|
+
JobTag?: string;
|
|
48
|
+
}
|
|
49
|
+
export interface StartFaceDetectionResponse {
|
|
50
|
+
JobId?: string;
|
|
51
|
+
}
|
|
52
|
+
export interface StartFaceSearchRequest {
|
|
53
|
+
Video: Video | undefined;
|
|
54
|
+
ClientRequestToken?: string;
|
|
55
|
+
FaceMatchThreshold?: number;
|
|
56
|
+
CollectionId: string | undefined;
|
|
57
|
+
NotificationChannel?: NotificationChannel;
|
|
58
|
+
JobTag?: string;
|
|
59
|
+
}
|
|
60
|
+
export interface StartFaceSearchResponse {
|
|
61
|
+
JobId?: string;
|
|
62
|
+
}
|
|
63
|
+
export interface StartLabelDetectionRequest {
|
|
64
|
+
Video: Video | undefined;
|
|
65
|
+
ClientRequestToken?: string;
|
|
66
|
+
MinConfidence?: number;
|
|
67
|
+
NotificationChannel?: NotificationChannel;
|
|
68
|
+
JobTag?: string;
|
|
69
|
+
Features?: (LabelDetectionFeatureName | string)[];
|
|
70
|
+
Settings?: LabelDetectionSettings;
|
|
71
|
+
}
|
|
72
|
+
export interface StartLabelDetectionResponse {
|
|
73
|
+
JobId?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface StartPersonTrackingRequest {
|
|
76
|
+
Video: Video | undefined;
|
|
77
|
+
ClientRequestToken?: string;
|
|
78
|
+
NotificationChannel?: NotificationChannel;
|
|
79
|
+
JobTag?: string;
|
|
80
|
+
}
|
|
81
|
+
export interface StartPersonTrackingResponse {
|
|
82
|
+
JobId?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface StartProjectVersionRequest {
|
|
85
|
+
ProjectVersionArn: string | undefined;
|
|
86
|
+
MinInferenceUnits: number | undefined;
|
|
87
|
+
MaxInferenceUnits?: number;
|
|
88
|
+
}
|
|
89
|
+
export interface StartProjectVersionResponse {
|
|
90
|
+
Status?: ProjectVersionStatus | string;
|
|
91
|
+
}
|
|
92
|
+
export interface StartShotDetectionFilter {
|
|
93
|
+
MinSegmentConfidence?: number;
|
|
94
|
+
}
|
|
95
|
+
export interface StartTechnicalCueDetectionFilter {
|
|
96
|
+
MinSegmentConfidence?: number;
|
|
97
|
+
BlackFrame?: BlackFrame;
|
|
98
|
+
}
|
|
99
|
+
export interface StartSegmentDetectionFilters {
|
|
100
|
+
TechnicalCueFilter?: StartTechnicalCueDetectionFilter;
|
|
101
|
+
ShotFilter?: StartShotDetectionFilter;
|
|
102
|
+
}
|
|
103
|
+
export interface StartSegmentDetectionRequest {
|
|
104
|
+
Video: Video | undefined;
|
|
105
|
+
ClientRequestToken?: string;
|
|
106
|
+
NotificationChannel?: NotificationChannel;
|
|
107
|
+
JobTag?: string;
|
|
108
|
+
Filters?: StartSegmentDetectionFilters;
|
|
109
|
+
SegmentTypes: (SegmentType | string)[] | undefined;
|
|
110
|
+
}
|
|
111
|
+
export interface StartSegmentDetectionResponse {
|
|
112
|
+
JobId?: string;
|
|
113
|
+
}
|
|
114
|
+
export interface StreamProcessingStartSelector {
|
|
115
|
+
KVSStreamStartSelector?: KinesisVideoStreamStartSelector;
|
|
116
|
+
}
|
|
117
|
+
export interface StreamProcessingStopSelector {
|
|
118
|
+
MaxDurationInSeconds?: number;
|
|
119
|
+
}
|
|
120
|
+
export interface StartStreamProcessorRequest {
|
|
121
|
+
Name: string | undefined;
|
|
122
|
+
StartSelector?: StreamProcessingStartSelector;
|
|
123
|
+
StopSelector?: StreamProcessingStopSelector;
|
|
124
|
+
}
|
|
125
|
+
export interface StartStreamProcessorResponse {
|
|
126
|
+
SessionId?: string;
|
|
127
|
+
}
|
|
128
|
+
export interface StartTextDetectionFilters {
|
|
129
|
+
WordFilter?: DetectionFilter;
|
|
130
|
+
RegionsOfInterest?: RegionOfInterest[];
|
|
131
|
+
}
|
|
132
|
+
export interface StartTextDetectionRequest {
|
|
133
|
+
Video: Video | undefined;
|
|
134
|
+
ClientRequestToken?: string;
|
|
135
|
+
NotificationChannel?: NotificationChannel;
|
|
136
|
+
JobTag?: string;
|
|
137
|
+
Filters?: StartTextDetectionFilters;
|
|
138
|
+
}
|
|
139
|
+
export interface StartTextDetectionResponse {
|
|
140
|
+
JobId?: string;
|
|
141
|
+
}
|
|
142
|
+
export interface StopProjectVersionRequest {
|
|
143
|
+
ProjectVersionArn: string | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface StopProjectVersionResponse {
|
|
146
|
+
Status?: ProjectVersionStatus | string;
|
|
147
|
+
}
|
|
148
|
+
export interface StopStreamProcessorRequest {
|
|
149
|
+
Name: string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface StopStreamProcessorResponse {}
|
|
152
|
+
export interface TagResourceRequest {
|
|
153
|
+
ResourceArn: string | undefined;
|
|
154
|
+
Tags: Record<string, string> | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface TagResourceResponse {}
|
|
7
157
|
export interface UntagResourceRequest {
|
|
8
158
|
ResourceArn: string | undefined;
|
|
9
159
|
TagKeys: string[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUsersCommandInput,
|
|
4
|
+
ListUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListUsersCommand";
|
|
6
|
+
import { RekognitionPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListUsers(
|
|
8
|
+
config: RekognitionPaginationConfiguration,
|
|
9
|
+
input: ListUsersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListUsersCommandOutput>;
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateFacesCommandInput,
|
|
8
|
+
AssociateFacesCommandOutput,
|
|
9
|
+
} from "../commands/AssociateFacesCommand";
|
|
6
10
|
import {
|
|
7
11
|
CompareFacesCommandInput,
|
|
8
12
|
CompareFacesCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
CreateStreamProcessorCommandInput,
|
|
36
40
|
CreateStreamProcessorCommandOutput,
|
|
37
41
|
} from "../commands/CreateStreamProcessorCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateUserCommandInput,
|
|
44
|
+
CreateUserCommandOutput,
|
|
45
|
+
} from "../commands/CreateUserCommand";
|
|
38
46
|
import {
|
|
39
47
|
DeleteCollectionCommandInput,
|
|
40
48
|
DeleteCollectionCommandOutput,
|
|
@@ -63,6 +71,10 @@ import {
|
|
|
63
71
|
DeleteStreamProcessorCommandInput,
|
|
64
72
|
DeleteStreamProcessorCommandOutput,
|
|
65
73
|
} from "../commands/DeleteStreamProcessorCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteUserCommandInput,
|
|
76
|
+
DeleteUserCommandOutput,
|
|
77
|
+
} from "../commands/DeleteUserCommand";
|
|
66
78
|
import {
|
|
67
79
|
DescribeCollectionCommandInput,
|
|
68
80
|
DescribeCollectionCommandOutput,
|
|
@@ -107,6 +119,10 @@ import {
|
|
|
107
119
|
DetectTextCommandInput,
|
|
108
120
|
DetectTextCommandOutput,
|
|
109
121
|
} from "../commands/DetectTextCommand";
|
|
122
|
+
import {
|
|
123
|
+
DisassociateFacesCommandInput,
|
|
124
|
+
DisassociateFacesCommandOutput,
|
|
125
|
+
} from "../commands/DisassociateFacesCommand";
|
|
110
126
|
import {
|
|
111
127
|
DistributeDatasetEntriesCommandInput,
|
|
112
128
|
DistributeDatasetEntriesCommandOutput,
|
|
@@ -183,6 +199,10 @@ import {
|
|
|
183
199
|
ListTagsForResourceCommandInput,
|
|
184
200
|
ListTagsForResourceCommandOutput,
|
|
185
201
|
} from "../commands/ListTagsForResourceCommand";
|
|
202
|
+
import {
|
|
203
|
+
ListUsersCommandInput,
|
|
204
|
+
ListUsersCommandOutput,
|
|
205
|
+
} from "../commands/ListUsersCommand";
|
|
186
206
|
import {
|
|
187
207
|
PutProjectPolicyCommandInput,
|
|
188
208
|
PutProjectPolicyCommandOutput,
|
|
@@ -199,6 +219,14 @@ import {
|
|
|
199
219
|
SearchFacesCommandInput,
|
|
200
220
|
SearchFacesCommandOutput,
|
|
201
221
|
} from "../commands/SearchFacesCommand";
|
|
222
|
+
import {
|
|
223
|
+
SearchUsersByImageCommandInput,
|
|
224
|
+
SearchUsersByImageCommandOutput,
|
|
225
|
+
} from "../commands/SearchUsersByImageCommand";
|
|
226
|
+
import {
|
|
227
|
+
SearchUsersCommandInput,
|
|
228
|
+
SearchUsersCommandOutput,
|
|
229
|
+
} from "../commands/SearchUsersCommand";
|
|
202
230
|
import {
|
|
203
231
|
StartCelebrityRecognitionCommandInput,
|
|
204
232
|
StartCelebrityRecognitionCommandOutput,
|
|
@@ -263,6 +291,10 @@ import {
|
|
|
263
291
|
UpdateStreamProcessorCommandInput,
|
|
264
292
|
UpdateStreamProcessorCommandOutput,
|
|
265
293
|
} from "../commands/UpdateStreamProcessorCommand";
|
|
294
|
+
export declare const se_AssociateFacesCommand: (
|
|
295
|
+
input: AssociateFacesCommandInput,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<__HttpRequest>;
|
|
266
298
|
export declare const se_CompareFacesCommand: (
|
|
267
299
|
input: CompareFacesCommandInput,
|
|
268
300
|
context: __SerdeContext
|
|
@@ -295,6 +327,10 @@ export declare const se_CreateStreamProcessorCommand: (
|
|
|
295
327
|
input: CreateStreamProcessorCommandInput,
|
|
296
328
|
context: __SerdeContext
|
|
297
329
|
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const se_CreateUserCommand: (
|
|
331
|
+
input: CreateUserCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
298
334
|
export declare const se_DeleteCollectionCommand: (
|
|
299
335
|
input: DeleteCollectionCommandInput,
|
|
300
336
|
context: __SerdeContext
|
|
@@ -323,6 +359,10 @@ export declare const se_DeleteStreamProcessorCommand: (
|
|
|
323
359
|
input: DeleteStreamProcessorCommandInput,
|
|
324
360
|
context: __SerdeContext
|
|
325
361
|
) => Promise<__HttpRequest>;
|
|
362
|
+
export declare const se_DeleteUserCommand: (
|
|
363
|
+
input: DeleteUserCommandInput,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<__HttpRequest>;
|
|
326
366
|
export declare const se_DescribeCollectionCommand: (
|
|
327
367
|
input: DescribeCollectionCommandInput,
|
|
328
368
|
context: __SerdeContext
|
|
@@ -367,6 +407,10 @@ export declare const se_DetectTextCommand: (
|
|
|
367
407
|
input: DetectTextCommandInput,
|
|
368
408
|
context: __SerdeContext
|
|
369
409
|
) => Promise<__HttpRequest>;
|
|
410
|
+
export declare const se_DisassociateFacesCommand: (
|
|
411
|
+
input: DisassociateFacesCommandInput,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<__HttpRequest>;
|
|
370
414
|
export declare const se_DistributeDatasetEntriesCommand: (
|
|
371
415
|
input: DistributeDatasetEntriesCommandInput,
|
|
372
416
|
context: __SerdeContext
|
|
@@ -443,6 +487,10 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
443
487
|
input: ListTagsForResourceCommandInput,
|
|
444
488
|
context: __SerdeContext
|
|
445
489
|
) => Promise<__HttpRequest>;
|
|
490
|
+
export declare const se_ListUsersCommand: (
|
|
491
|
+
input: ListUsersCommandInput,
|
|
492
|
+
context: __SerdeContext
|
|
493
|
+
) => Promise<__HttpRequest>;
|
|
446
494
|
export declare const se_PutProjectPolicyCommand: (
|
|
447
495
|
input: PutProjectPolicyCommandInput,
|
|
448
496
|
context: __SerdeContext
|
|
@@ -459,6 +507,14 @@ export declare const se_SearchFacesByImageCommand: (
|
|
|
459
507
|
input: SearchFacesByImageCommandInput,
|
|
460
508
|
context: __SerdeContext
|
|
461
509
|
) => Promise<__HttpRequest>;
|
|
510
|
+
export declare const se_SearchUsersCommand: (
|
|
511
|
+
input: SearchUsersCommandInput,
|
|
512
|
+
context: __SerdeContext
|
|
513
|
+
) => Promise<__HttpRequest>;
|
|
514
|
+
export declare const se_SearchUsersByImageCommand: (
|
|
515
|
+
input: SearchUsersByImageCommandInput,
|
|
516
|
+
context: __SerdeContext
|
|
517
|
+
) => Promise<__HttpRequest>;
|
|
462
518
|
export declare const se_StartCelebrityRecognitionCommand: (
|
|
463
519
|
input: StartCelebrityRecognitionCommandInput,
|
|
464
520
|
context: __SerdeContext
|
|
@@ -523,6 +579,10 @@ export declare const se_UpdateStreamProcessorCommand: (
|
|
|
523
579
|
input: UpdateStreamProcessorCommandInput,
|
|
524
580
|
context: __SerdeContext
|
|
525
581
|
) => Promise<__HttpRequest>;
|
|
582
|
+
export declare const de_AssociateFacesCommand: (
|
|
583
|
+
output: __HttpResponse,
|
|
584
|
+
context: __SerdeContext
|
|
585
|
+
) => Promise<AssociateFacesCommandOutput>;
|
|
526
586
|
export declare const de_CompareFacesCommand: (
|
|
527
587
|
output: __HttpResponse,
|
|
528
588
|
context: __SerdeContext
|
|
@@ -555,6 +615,10 @@ export declare const de_CreateStreamProcessorCommand: (
|
|
|
555
615
|
output: __HttpResponse,
|
|
556
616
|
context: __SerdeContext
|
|
557
617
|
) => Promise<CreateStreamProcessorCommandOutput>;
|
|
618
|
+
export declare const de_CreateUserCommand: (
|
|
619
|
+
output: __HttpResponse,
|
|
620
|
+
context: __SerdeContext
|
|
621
|
+
) => Promise<CreateUserCommandOutput>;
|
|
558
622
|
export declare const de_DeleteCollectionCommand: (
|
|
559
623
|
output: __HttpResponse,
|
|
560
624
|
context: __SerdeContext
|
|
@@ -583,6 +647,10 @@ export declare const de_DeleteStreamProcessorCommand: (
|
|
|
583
647
|
output: __HttpResponse,
|
|
584
648
|
context: __SerdeContext
|
|
585
649
|
) => Promise<DeleteStreamProcessorCommandOutput>;
|
|
650
|
+
export declare const de_DeleteUserCommand: (
|
|
651
|
+
output: __HttpResponse,
|
|
652
|
+
context: __SerdeContext
|
|
653
|
+
) => Promise<DeleteUserCommandOutput>;
|
|
586
654
|
export declare const de_DescribeCollectionCommand: (
|
|
587
655
|
output: __HttpResponse,
|
|
588
656
|
context: __SerdeContext
|
|
@@ -627,6 +695,10 @@ export declare const de_DetectTextCommand: (
|
|
|
627
695
|
output: __HttpResponse,
|
|
628
696
|
context: __SerdeContext
|
|
629
697
|
) => Promise<DetectTextCommandOutput>;
|
|
698
|
+
export declare const de_DisassociateFacesCommand: (
|
|
699
|
+
output: __HttpResponse,
|
|
700
|
+
context: __SerdeContext
|
|
701
|
+
) => Promise<DisassociateFacesCommandOutput>;
|
|
630
702
|
export declare const de_DistributeDatasetEntriesCommand: (
|
|
631
703
|
output: __HttpResponse,
|
|
632
704
|
context: __SerdeContext
|
|
@@ -703,6 +775,10 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
703
775
|
output: __HttpResponse,
|
|
704
776
|
context: __SerdeContext
|
|
705
777
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
778
|
+
export declare const de_ListUsersCommand: (
|
|
779
|
+
output: __HttpResponse,
|
|
780
|
+
context: __SerdeContext
|
|
781
|
+
) => Promise<ListUsersCommandOutput>;
|
|
706
782
|
export declare const de_PutProjectPolicyCommand: (
|
|
707
783
|
output: __HttpResponse,
|
|
708
784
|
context: __SerdeContext
|
|
@@ -719,6 +795,14 @@ export declare const de_SearchFacesByImageCommand: (
|
|
|
719
795
|
output: __HttpResponse,
|
|
720
796
|
context: __SerdeContext
|
|
721
797
|
) => Promise<SearchFacesByImageCommandOutput>;
|
|
798
|
+
export declare const de_SearchUsersCommand: (
|
|
799
|
+
output: __HttpResponse,
|
|
800
|
+
context: __SerdeContext
|
|
801
|
+
) => Promise<SearchUsersCommandOutput>;
|
|
802
|
+
export declare const de_SearchUsersByImageCommand: (
|
|
803
|
+
output: __HttpResponse,
|
|
804
|
+
context: __SerdeContext
|
|
805
|
+
) => Promise<SearchUsersByImageCommandOutput>;
|
|
722
806
|
export declare const de_StartCelebrityRecognitionCommand: (
|
|
723
807
|
output: __HttpResponse,
|
|
724
808
|
context: __SerdeContext
|
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.351.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",
|
|
@@ -55,12 +55,14 @@
|
|
|
55
55
|
"@aws-sdk/util-waiter": "3.347.0",
|
|
56
56
|
"@smithy/protocol-http": "^1.0.1",
|
|
57
57
|
"@smithy/types": "^1.0.0",
|
|
58
|
-
"tslib": "^2.5.0"
|
|
58
|
+
"tslib": "^2.5.0",
|
|
59
|
+
"uuid": "^8.3.2"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
62
63
|
"@tsconfig/node14": "1.0.3",
|
|
63
64
|
"@types/node": "^14.14.31",
|
|
65
|
+
"@types/uuid": "^8.3.0",
|
|
64
66
|
"concurrently": "7.0.0",
|
|
65
67
|
"downlevel-dts": "0.10.1",
|
|
66
68
|
"rimraf": "3.0.2",
|