@aws-sdk/client-rekognition 3.350.0 → 3.352.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 +203 -0
- package/dist-types/commands/CreateUserCommand.d.ts +126 -0
- package/dist-types/commands/DeleteFacesCommand.d.ts +9 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +119 -0
- package/dist-types/commands/DescribeCollectionCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateFacesCommand.d.ts +164 -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 +134 -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 +366 -0
- package/dist-types/commands/SearchUsersCommand.d.ts +148 -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 +8 -6
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { SearchUsersByImageRequest, SearchUsersByImageResponse } from "../models/models_0";
|
|
5
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link SearchUsersByImageCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface SearchUsersByImageCommandInput extends SearchUsersByImageRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link SearchUsersByImageCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface SearchUsersByImageCommandOutput extends SearchUsersByImageResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Searches for UserIDs using a supplied image. It first detects the largest face in the
|
|
27
|
+
* image, and then searches a specified collection for matching UserIDs. </p>
|
|
28
|
+
* <p>The operation returns an array of UserIDs that match the face in the supplied image,
|
|
29
|
+
* ordered by similarity score with the highest similarity first. It also returns a bounding box
|
|
30
|
+
* for the face found in the input image. </p>
|
|
31
|
+
* <p>Information about faces detected in the supplied image, but not used for the search, is
|
|
32
|
+
* returned in an array of <code>UnsearchedFace</code> objects. If no valid face is detected
|
|
33
|
+
* in the image, the response will contain an empty <code>UserMatches</code> list and no
|
|
34
|
+
* <code>SearchedFace</code> object. </p>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { RekognitionClient, SearchUsersByImageCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
|
|
39
|
+
* // const { RekognitionClient, SearchUsersByImageCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
|
|
40
|
+
* const client = new RekognitionClient(config);
|
|
41
|
+
* const input = { // SearchUsersByImageRequest
|
|
42
|
+
* CollectionId: "STRING_VALUE", // required
|
|
43
|
+
* Image: { // Image
|
|
44
|
+
* Bytes: "BLOB_VALUE",
|
|
45
|
+
* S3Object: { // S3Object
|
|
46
|
+
* Bucket: "STRING_VALUE",
|
|
47
|
+
* Name: "STRING_VALUE",
|
|
48
|
+
* Version: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* },
|
|
51
|
+
* UserMatchThreshold: Number("float"),
|
|
52
|
+
* MaxUsers: Number("int"),
|
|
53
|
+
* QualityFilter: "NONE" || "AUTO" || "LOW" || "MEDIUM" || "HIGH",
|
|
54
|
+
* };
|
|
55
|
+
* const command = new SearchUsersByImageCommand(input);
|
|
56
|
+
* const response = await client.send(command);
|
|
57
|
+
* // { // SearchUsersByImageResponse
|
|
58
|
+
* // UserMatches: [ // UserMatchList
|
|
59
|
+
* // { // UserMatch
|
|
60
|
+
* // Similarity: Number("float"),
|
|
61
|
+
* // User: { // MatchedUser
|
|
62
|
+
* // UserId: "STRING_VALUE",
|
|
63
|
+
* // UserStatus: "ACTIVE" || "UPDATING" || "CREATING" || "CREATED",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // FaceModelVersion: "STRING_VALUE",
|
|
68
|
+
* // SearchedFace: { // SearchedFaceDetails
|
|
69
|
+
* // FaceDetail: { // FaceDetail
|
|
70
|
+
* // BoundingBox: { // BoundingBox
|
|
71
|
+
* // Width: Number("float"),
|
|
72
|
+
* // Height: Number("float"),
|
|
73
|
+
* // Left: Number("float"),
|
|
74
|
+
* // Top: Number("float"),
|
|
75
|
+
* // },
|
|
76
|
+
* // AgeRange: { // AgeRange
|
|
77
|
+
* // Low: Number("int"),
|
|
78
|
+
* // High: Number("int"),
|
|
79
|
+
* // },
|
|
80
|
+
* // Smile: { // Smile
|
|
81
|
+
* // Value: true || false,
|
|
82
|
+
* // Confidence: Number("float"),
|
|
83
|
+
* // },
|
|
84
|
+
* // Eyeglasses: { // Eyeglasses
|
|
85
|
+
* // Value: true || false,
|
|
86
|
+
* // Confidence: Number("float"),
|
|
87
|
+
* // },
|
|
88
|
+
* // Sunglasses: { // Sunglasses
|
|
89
|
+
* // Value: true || false,
|
|
90
|
+
* // Confidence: Number("float"),
|
|
91
|
+
* // },
|
|
92
|
+
* // Gender: { // Gender
|
|
93
|
+
* // Value: "Male" || "Female",
|
|
94
|
+
* // Confidence: Number("float"),
|
|
95
|
+
* // },
|
|
96
|
+
* // Beard: { // Beard
|
|
97
|
+
* // Value: true || false,
|
|
98
|
+
* // Confidence: Number("float"),
|
|
99
|
+
* // },
|
|
100
|
+
* // Mustache: { // Mustache
|
|
101
|
+
* // Value: true || false,
|
|
102
|
+
* // Confidence: Number("float"),
|
|
103
|
+
* // },
|
|
104
|
+
* // EyesOpen: { // EyeOpen
|
|
105
|
+
* // Value: true || false,
|
|
106
|
+
* // Confidence: Number("float"),
|
|
107
|
+
* // },
|
|
108
|
+
* // MouthOpen: { // MouthOpen
|
|
109
|
+
* // Value: true || false,
|
|
110
|
+
* // Confidence: Number("float"),
|
|
111
|
+
* // },
|
|
112
|
+
* // Emotions: [ // Emotions
|
|
113
|
+
* // { // Emotion
|
|
114
|
+
* // Type: "HAPPY" || "SAD" || "ANGRY" || "CONFUSED" || "DISGUSTED" || "SURPRISED" || "CALM" || "UNKNOWN" || "FEAR",
|
|
115
|
+
* // Confidence: Number("float"),
|
|
116
|
+
* // },
|
|
117
|
+
* // ],
|
|
118
|
+
* // Landmarks: [ // Landmarks
|
|
119
|
+
* // { // Landmark
|
|
120
|
+
* // Type: "eyeLeft" || "eyeRight" || "nose" || "mouthLeft" || "mouthRight" || "leftEyeBrowLeft" || "leftEyeBrowRight" || "leftEyeBrowUp" || "rightEyeBrowLeft" || "rightEyeBrowRight" || "rightEyeBrowUp" || "leftEyeLeft" || "leftEyeRight" || "leftEyeUp" || "leftEyeDown" || "rightEyeLeft" || "rightEyeRight" || "rightEyeUp" || "rightEyeDown" || "noseLeft" || "noseRight" || "mouthUp" || "mouthDown" || "leftPupil" || "rightPupil" || "upperJawlineLeft" || "midJawlineLeft" || "chinBottom" || "midJawlineRight" || "upperJawlineRight",
|
|
121
|
+
* // X: Number("float"),
|
|
122
|
+
* // Y: Number("float"),
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // Pose: { // Pose
|
|
126
|
+
* // Roll: Number("float"),
|
|
127
|
+
* // Yaw: Number("float"),
|
|
128
|
+
* // Pitch: Number("float"),
|
|
129
|
+
* // },
|
|
130
|
+
* // Quality: { // ImageQuality
|
|
131
|
+
* // Brightness: Number("float"),
|
|
132
|
+
* // Sharpness: Number("float"),
|
|
133
|
+
* // },
|
|
134
|
+
* // Confidence: Number("float"),
|
|
135
|
+
* // FaceOccluded: { // FaceOccluded
|
|
136
|
+
* // Value: true || false,
|
|
137
|
+
* // Confidence: Number("float"),
|
|
138
|
+
* // },
|
|
139
|
+
* // EyeDirection: { // EyeDirection
|
|
140
|
+
* // Yaw: Number("float"),
|
|
141
|
+
* // Pitch: Number("float"),
|
|
142
|
+
* // Confidence: Number("float"),
|
|
143
|
+
* // },
|
|
144
|
+
* // },
|
|
145
|
+
* // },
|
|
146
|
+
* // UnsearchedFaces: [ // UnsearchedFacesList
|
|
147
|
+
* // { // UnsearchedFace
|
|
148
|
+
* // FaceDetails: {
|
|
149
|
+
* // BoundingBox: {
|
|
150
|
+
* // Width: Number("float"),
|
|
151
|
+
* // Height: Number("float"),
|
|
152
|
+
* // Left: Number("float"),
|
|
153
|
+
* // Top: Number("float"),
|
|
154
|
+
* // },
|
|
155
|
+
* // AgeRange: {
|
|
156
|
+
* // Low: Number("int"),
|
|
157
|
+
* // High: Number("int"),
|
|
158
|
+
* // },
|
|
159
|
+
* // Smile: {
|
|
160
|
+
* // Value: true || false,
|
|
161
|
+
* // Confidence: Number("float"),
|
|
162
|
+
* // },
|
|
163
|
+
* // Eyeglasses: {
|
|
164
|
+
* // Value: true || false,
|
|
165
|
+
* // Confidence: Number("float"),
|
|
166
|
+
* // },
|
|
167
|
+
* // Sunglasses: {
|
|
168
|
+
* // Value: true || false,
|
|
169
|
+
* // Confidence: Number("float"),
|
|
170
|
+
* // },
|
|
171
|
+
* // Gender: {
|
|
172
|
+
* // Value: "Male" || "Female",
|
|
173
|
+
* // Confidence: Number("float"),
|
|
174
|
+
* // },
|
|
175
|
+
* // Beard: {
|
|
176
|
+
* // Value: true || false,
|
|
177
|
+
* // Confidence: Number("float"),
|
|
178
|
+
* // },
|
|
179
|
+
* // Mustache: {
|
|
180
|
+
* // Value: true || false,
|
|
181
|
+
* // Confidence: Number("float"),
|
|
182
|
+
* // },
|
|
183
|
+
* // EyesOpen: {
|
|
184
|
+
* // Value: true || false,
|
|
185
|
+
* // Confidence: Number("float"),
|
|
186
|
+
* // },
|
|
187
|
+
* // MouthOpen: {
|
|
188
|
+
* // Value: true || false,
|
|
189
|
+
* // Confidence: Number("float"),
|
|
190
|
+
* // },
|
|
191
|
+
* // Emotions: [
|
|
192
|
+
* // {
|
|
193
|
+
* // Type: "HAPPY" || "SAD" || "ANGRY" || "CONFUSED" || "DISGUSTED" || "SURPRISED" || "CALM" || "UNKNOWN" || "FEAR",
|
|
194
|
+
* // Confidence: Number("float"),
|
|
195
|
+
* // },
|
|
196
|
+
* // ],
|
|
197
|
+
* // Landmarks: [
|
|
198
|
+
* // {
|
|
199
|
+
* // Type: "eyeLeft" || "eyeRight" || "nose" || "mouthLeft" || "mouthRight" || "leftEyeBrowLeft" || "leftEyeBrowRight" || "leftEyeBrowUp" || "rightEyeBrowLeft" || "rightEyeBrowRight" || "rightEyeBrowUp" || "leftEyeLeft" || "leftEyeRight" || "leftEyeUp" || "leftEyeDown" || "rightEyeLeft" || "rightEyeRight" || "rightEyeUp" || "rightEyeDown" || "noseLeft" || "noseRight" || "mouthUp" || "mouthDown" || "leftPupil" || "rightPupil" || "upperJawlineLeft" || "midJawlineLeft" || "chinBottom" || "midJawlineRight" || "upperJawlineRight",
|
|
200
|
+
* // X: Number("float"),
|
|
201
|
+
* // Y: Number("float"),
|
|
202
|
+
* // },
|
|
203
|
+
* // ],
|
|
204
|
+
* // Pose: {
|
|
205
|
+
* // Roll: Number("float"),
|
|
206
|
+
* // Yaw: Number("float"),
|
|
207
|
+
* // Pitch: Number("float"),
|
|
208
|
+
* // },
|
|
209
|
+
* // Quality: {
|
|
210
|
+
* // Brightness: Number("float"),
|
|
211
|
+
* // Sharpness: Number("float"),
|
|
212
|
+
* // },
|
|
213
|
+
* // Confidence: Number("float"),
|
|
214
|
+
* // FaceOccluded: {
|
|
215
|
+
* // Value: true || false,
|
|
216
|
+
* // Confidence: Number("float"),
|
|
217
|
+
* // },
|
|
218
|
+
* // EyeDirection: {
|
|
219
|
+
* // Yaw: Number("float"),
|
|
220
|
+
* // Pitch: Number("float"),
|
|
221
|
+
* // Confidence: Number("float"),
|
|
222
|
+
* // },
|
|
223
|
+
* // },
|
|
224
|
+
* // Reasons: [ // UnsearchedFaceReasons
|
|
225
|
+
* // "FACE_NOT_LARGEST" || "EXCEEDS_MAX_FACES" || "EXTREME_POSE" || "LOW_BRIGHTNESS" || "LOW_SHARPNESS" || "LOW_CONFIDENCE" || "SMALL_BOUNDING_BOX" || "LOW_FACE_QUALITY",
|
|
226
|
+
* // ],
|
|
227
|
+
* // },
|
|
228
|
+
* // ],
|
|
229
|
+
* // };
|
|
230
|
+
*
|
|
231
|
+
* ```
|
|
232
|
+
*
|
|
233
|
+
* @param SearchUsersByImageCommandInput - {@link SearchUsersByImageCommandInput}
|
|
234
|
+
* @returns {@link SearchUsersByImageCommandOutput}
|
|
235
|
+
* @see {@link SearchUsersByImageCommandInput} for command's `input` shape.
|
|
236
|
+
* @see {@link SearchUsersByImageCommandOutput} for command's `response` shape.
|
|
237
|
+
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
238
|
+
*
|
|
239
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
240
|
+
* <p>You are not authorized to perform the action.</p>
|
|
241
|
+
*
|
|
242
|
+
* @throws {@link ImageTooLargeException} (client fault)
|
|
243
|
+
* <p>The input image size exceeds the allowed limit. If you are calling
|
|
244
|
+
* DetectProtectiveEquipment, the image size or resolution exceeds the allowed limit. For more
|
|
245
|
+
* information, see Guidelines and quotas in Amazon Rekognition in the Amazon Rekognition Developer Guide.
|
|
246
|
+
* </p>
|
|
247
|
+
*
|
|
248
|
+
* @throws {@link InternalServerError} (server fault)
|
|
249
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
250
|
+
*
|
|
251
|
+
* @throws {@link InvalidImageFormatException} (client fault)
|
|
252
|
+
* <p>The provided image format is not supported. </p>
|
|
253
|
+
*
|
|
254
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
255
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
256
|
+
* operation again.</p>
|
|
257
|
+
*
|
|
258
|
+
* @throws {@link InvalidS3ObjectException} (client fault)
|
|
259
|
+
* <p>Amazon Rekognition is unable to access the S3 object specified in the request.</p>
|
|
260
|
+
*
|
|
261
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
262
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
263
|
+
* limit, contact Amazon Rekognition.</p>
|
|
264
|
+
*
|
|
265
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
266
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
267
|
+
*
|
|
268
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
269
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
270
|
+
*
|
|
271
|
+
* @throws {@link RekognitionServiceException}
|
|
272
|
+
* <p>Base exception class for all service exceptions from Rekognition service.</p>
|
|
273
|
+
*
|
|
274
|
+
* @example SearchUsersByImage
|
|
275
|
+
* ```javascript
|
|
276
|
+
* // Searches for UserIDs using a supplied image.
|
|
277
|
+
* const input = {
|
|
278
|
+
* "CollectionId": "MyCollection",
|
|
279
|
+
* "Image": {
|
|
280
|
+
* "S3Object": {
|
|
281
|
+
* "Bucket": "bucket",
|
|
282
|
+
* "Name": "input.jpg"
|
|
283
|
+
* }
|
|
284
|
+
* },
|
|
285
|
+
* "MaxUsers": 2,
|
|
286
|
+
* "QualityFilter": "MEDIUM",
|
|
287
|
+
* "UserMatchThreshold": 70
|
|
288
|
+
* };
|
|
289
|
+
* const command = new SearchUsersByImageCommand(input);
|
|
290
|
+
* const response = await client.send(command);
|
|
291
|
+
* /* response ==
|
|
292
|
+
* {
|
|
293
|
+
* "FaceModelVersion": "6",
|
|
294
|
+
* "SearchedFace": {
|
|
295
|
+
* "FaceDetail": {
|
|
296
|
+
* "BoundingBox": {
|
|
297
|
+
* "Height": 0.07510016113519669,
|
|
298
|
+
* "Left": 0.3598678708076477,
|
|
299
|
+
* "Top": 0.5391526818275452,
|
|
300
|
+
* "Width": 0.03692837432026863
|
|
301
|
+
* }
|
|
302
|
+
* }
|
|
303
|
+
* },
|
|
304
|
+
* "UnsearchedFaces": [
|
|
305
|
+
* {
|
|
306
|
+
* "FaceDetails": {
|
|
307
|
+
* "BoundingBox": {
|
|
308
|
+
* "Height": 0.0682177022099495,
|
|
309
|
+
* "Left": 0.6102562546730042,
|
|
310
|
+
* "Top": 0.5593535900115967,
|
|
311
|
+
* "Width": 0.031677018851041794
|
|
312
|
+
* }
|
|
313
|
+
* },
|
|
314
|
+
* "Reasons": [
|
|
315
|
+
* "FACE_NOT_LARGEST"
|
|
316
|
+
* ]
|
|
317
|
+
* },
|
|
318
|
+
* {
|
|
319
|
+
* "FaceDetails": {
|
|
320
|
+
* "BoundingBox": {
|
|
321
|
+
* "Height": 0.06347997486591339,
|
|
322
|
+
* "Left": 0.516062319278717,
|
|
323
|
+
* "Top": 0.6080358028411865,
|
|
324
|
+
* "Width": 0.03254449740052223
|
|
325
|
+
* }
|
|
326
|
+
* },
|
|
327
|
+
* "Reasons": [
|
|
328
|
+
* "FACE_NOT_LARGEST"
|
|
329
|
+
* ]
|
|
330
|
+
* }
|
|
331
|
+
* ],
|
|
332
|
+
* "UserMatches": [
|
|
333
|
+
* {
|
|
334
|
+
* "Similarity": 99.88186645507812,
|
|
335
|
+
* "User": {
|
|
336
|
+
* "UserId": "demoUser1",
|
|
337
|
+
* "UserStatus": "ACTIVE"
|
|
338
|
+
* }
|
|
339
|
+
* }
|
|
340
|
+
* ]
|
|
341
|
+
* }
|
|
342
|
+
* *\/
|
|
343
|
+
* // example id: searchusersbyimage-1686183178610
|
|
344
|
+
* ```
|
|
345
|
+
*
|
|
346
|
+
*/
|
|
347
|
+
export declare class SearchUsersByImageCommand extends $Command<SearchUsersByImageCommandInput, SearchUsersByImageCommandOutput, RekognitionClientResolvedConfig> {
|
|
348
|
+
readonly input: SearchUsersByImageCommandInput;
|
|
349
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
353
|
+
constructor(input: SearchUsersByImageCommandInput);
|
|
354
|
+
/**
|
|
355
|
+
* @internal
|
|
356
|
+
*/
|
|
357
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchUsersByImageCommandInput, SearchUsersByImageCommandOutput>;
|
|
358
|
+
/**
|
|
359
|
+
* @internal
|
|
360
|
+
*/
|
|
361
|
+
private serialize;
|
|
362
|
+
/**
|
|
363
|
+
* @internal
|
|
364
|
+
*/
|
|
365
|
+
private deserialize;
|
|
366
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { SearchUsersRequest, SearchUsersResponse } from "../models/models_0";
|
|
5
|
+
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link SearchUsersCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface SearchUsersCommandInput extends SearchUsersRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link SearchUsersCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface SearchUsersCommandOutput extends SearchUsersResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Searches for UserIDs within a collection based on a <code>FaceId</code> or
|
|
27
|
+
* <code>UserId</code>. This API can be used to find the closest UserID (with a highest
|
|
28
|
+
* similarity) to associate a face. The request must be provided with either <code>FaceId</code>
|
|
29
|
+
* or <code>UserId</code>. The operation returns an array of UserID that match the
|
|
30
|
+
* <code>FaceId</code> or <code>UserId</code>, ordered by similarity score with the highest
|
|
31
|
+
* similarity first. </p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { RekognitionClient, SearchUsersCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
|
|
36
|
+
* // const { RekognitionClient, SearchUsersCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
|
|
37
|
+
* const client = new RekognitionClient(config);
|
|
38
|
+
* const input = { // SearchUsersRequest
|
|
39
|
+
* CollectionId: "STRING_VALUE", // required
|
|
40
|
+
* UserId: "STRING_VALUE",
|
|
41
|
+
* FaceId: "STRING_VALUE",
|
|
42
|
+
* UserMatchThreshold: Number("float"),
|
|
43
|
+
* MaxUsers: Number("int"),
|
|
44
|
+
* };
|
|
45
|
+
* const command = new SearchUsersCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // SearchUsersResponse
|
|
48
|
+
* // UserMatches: [ // UserMatchList
|
|
49
|
+
* // { // UserMatch
|
|
50
|
+
* // Similarity: Number("float"),
|
|
51
|
+
* // User: { // MatchedUser
|
|
52
|
+
* // UserId: "STRING_VALUE",
|
|
53
|
+
* // UserStatus: "ACTIVE" || "UPDATING" || "CREATING" || "CREATED",
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // FaceModelVersion: "STRING_VALUE",
|
|
58
|
+
* // SearchedFace: { // SearchedFace
|
|
59
|
+
* // FaceId: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // SearchedUser: { // SearchedUser
|
|
62
|
+
* // UserId: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param SearchUsersCommandInput - {@link SearchUsersCommandInput}
|
|
69
|
+
* @returns {@link SearchUsersCommandOutput}
|
|
70
|
+
* @see {@link SearchUsersCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link SearchUsersCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
75
|
+
* <p>You are not authorized to perform the action.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerError} (server fault)
|
|
78
|
+
* <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
81
|
+
* <p>Input parameter violated a constraint. Validate your parameter before calling the API
|
|
82
|
+
* operation again.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
85
|
+
* <p>The number of requests exceeded your throughput limit. If you want to increase this
|
|
86
|
+
* limit, contact Amazon Rekognition.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
89
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (server fault)
|
|
92
|
+
* <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link RekognitionServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Rekognition service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @example SearchUsers
|
|
98
|
+
* ```javascript
|
|
99
|
+
* // Searches for UserIDs within a collection based on a FaceId or UserId.
|
|
100
|
+
* const input = {
|
|
101
|
+
* "CollectionId": "MyCollection",
|
|
102
|
+
* "MaxUsers": 2,
|
|
103
|
+
* "UserId": "DemoUser",
|
|
104
|
+
* "UserMatchThreshold": 70
|
|
105
|
+
* };
|
|
106
|
+
* const command = new SearchUsersCommand(input);
|
|
107
|
+
* const response = await client.send(command);
|
|
108
|
+
* /* response ==
|
|
109
|
+
* {
|
|
110
|
+
* "FaceModelVersion": "6",
|
|
111
|
+
* "SearchedUser": {
|
|
112
|
+
* "UserId": "DemoUser"
|
|
113
|
+
* },
|
|
114
|
+
* "UserMatches": [
|
|
115
|
+
* {
|
|
116
|
+
* "Similarity": 99.88186645507812,
|
|
117
|
+
* "User": {
|
|
118
|
+
* "UserId": "demoUser1",
|
|
119
|
+
* "UserStatus": "ACTIVE"
|
|
120
|
+
* }
|
|
121
|
+
* }
|
|
122
|
+
* ]
|
|
123
|
+
* }
|
|
124
|
+
* *\/
|
|
125
|
+
* // example id: searchusers-1686182912030
|
|
126
|
+
* ```
|
|
127
|
+
*
|
|
128
|
+
*/
|
|
129
|
+
export declare class SearchUsersCommand extends $Command<SearchUsersCommandInput, SearchUsersCommandOutput, RekognitionClientResolvedConfig> {
|
|
130
|
+
readonly input: SearchUsersCommandInput;
|
|
131
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
constructor(input: SearchUsersCommandInput);
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchUsersCommandInput, SearchUsersCommandOutput>;
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
private serialize;
|
|
144
|
+
/**
|
|
145
|
+
* @internal
|
|
146
|
+
*/
|
|
147
|
+
private deserialize;
|
|
148
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartCelebrityRecognitionRequest
|
|
4
|
+
import { StartCelebrityRecognitionRequest } from "../models/models_0";
|
|
5
|
+
import { StartCelebrityRecognitionResponse } from "../models/models_1";
|
|
5
6
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartContentModerationRequest, StartContentModerationResponse } from "../models/
|
|
4
|
+
import { StartContentModerationRequest, StartContentModerationResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartFaceDetectionRequest, StartFaceDetectionResponse } from "../models/
|
|
4
|
+
import { StartFaceDetectionRequest, StartFaceDetectionResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartFaceSearchRequest, StartFaceSearchResponse } from "../models/
|
|
4
|
+
import { StartFaceSearchRequest, StartFaceSearchResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartLabelDetectionRequest, StartLabelDetectionResponse } from "../models/
|
|
4
|
+
import { StartLabelDetectionRequest, StartLabelDetectionResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartPersonTrackingRequest, StartPersonTrackingResponse } from "../models/
|
|
4
|
+
import { StartPersonTrackingRequest, StartPersonTrackingResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartProjectVersionRequest, StartProjectVersionResponse } from "../models/
|
|
4
|
+
import { StartProjectVersionRequest, StartProjectVersionResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartSegmentDetectionRequest, StartSegmentDetectionResponse } from "../models/
|
|
4
|
+
import { StartSegmentDetectionRequest, StartSegmentDetectionResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartStreamProcessorRequest, StartStreamProcessorResponse } from "../models/
|
|
4
|
+
import { StartStreamProcessorRequest, StartStreamProcessorResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StartTextDetectionRequest, StartTextDetectionResponse } from "../models/
|
|
4
|
+
import { StartTextDetectionRequest, StartTextDetectionResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StopProjectVersionRequest, StopProjectVersionResponse } from "../models/
|
|
4
|
+
import { StopProjectVersionRequest, StopProjectVersionResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { StopStreamProcessorRequest, StopStreamProcessorResponse } from "../models/
|
|
4
|
+
import { StopStreamProcessorRequest, StopStreamProcessorResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
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
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
4
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
|
|
5
5
|
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|