@aws-sdk/client-rekognition 3.1074.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +3803 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/RekognitionServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -421
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -3126
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultRekognitionHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "rekognition",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultRekognitionHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,3334 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://rekognition-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://rekognition-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://rekognition.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://rekognition.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class RekognitionServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, RekognitionServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends RekognitionServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
Code;
|
|
144
|
+
Logref;
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "AccessDeniedException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
152
|
+
this.Message = opts.Message;
|
|
153
|
+
this.Code = opts.Code;
|
|
154
|
+
this.Logref = opts.Logref;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
class ConflictException extends RekognitionServiceException {
|
|
158
|
+
name = "ConflictException";
|
|
159
|
+
$fault = "client";
|
|
160
|
+
Message;
|
|
161
|
+
Code;
|
|
162
|
+
Logref;
|
|
163
|
+
constructor(opts) {
|
|
164
|
+
super({
|
|
165
|
+
name: "ConflictException",
|
|
166
|
+
$fault: "client",
|
|
167
|
+
...opts,
|
|
168
|
+
});
|
|
169
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
170
|
+
this.Message = opts.Message;
|
|
171
|
+
this.Code = opts.Code;
|
|
172
|
+
this.Logref = opts.Logref;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class IdempotentParameterMismatchException extends RekognitionServiceException {
|
|
176
|
+
name = "IdempotentParameterMismatchException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
Message;
|
|
179
|
+
Code;
|
|
180
|
+
Logref;
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "IdempotentParameterMismatchException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
188
|
+
this.Message = opts.Message;
|
|
189
|
+
this.Code = opts.Code;
|
|
190
|
+
this.Logref = opts.Logref;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
class InternalServerError extends RekognitionServiceException {
|
|
194
|
+
name = "InternalServerError";
|
|
195
|
+
$fault = "server";
|
|
196
|
+
Message;
|
|
197
|
+
Code;
|
|
198
|
+
Logref;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "InternalServerError",
|
|
202
|
+
$fault: "server",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
this.Code = opts.Code;
|
|
208
|
+
this.Logref = opts.Logref;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
class InvalidParameterException extends RekognitionServiceException {
|
|
212
|
+
name = "InvalidParameterException";
|
|
213
|
+
$fault = "client";
|
|
214
|
+
Message;
|
|
215
|
+
Code;
|
|
216
|
+
Logref;
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "InvalidParameterException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
225
|
+
this.Code = opts.Code;
|
|
226
|
+
this.Logref = opts.Logref;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
class ProvisionedThroughputExceededException extends RekognitionServiceException {
|
|
230
|
+
name = "ProvisionedThroughputExceededException";
|
|
231
|
+
$fault = "client";
|
|
232
|
+
Message;
|
|
233
|
+
Code;
|
|
234
|
+
Logref;
|
|
235
|
+
constructor(opts) {
|
|
236
|
+
super({
|
|
237
|
+
name: "ProvisionedThroughputExceededException",
|
|
238
|
+
$fault: "client",
|
|
239
|
+
...opts,
|
|
240
|
+
});
|
|
241
|
+
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
242
|
+
this.Message = opts.Message;
|
|
243
|
+
this.Code = opts.Code;
|
|
244
|
+
this.Logref = opts.Logref;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
class ResourceNotFoundException extends RekognitionServiceException {
|
|
248
|
+
name = "ResourceNotFoundException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
Message;
|
|
251
|
+
Code;
|
|
252
|
+
Logref;
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "ResourceNotFoundException",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
260
|
+
this.Message = opts.Message;
|
|
261
|
+
this.Code = opts.Code;
|
|
262
|
+
this.Logref = opts.Logref;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class ServiceQuotaExceededException extends RekognitionServiceException {
|
|
266
|
+
name = "ServiceQuotaExceededException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
Message;
|
|
269
|
+
Code;
|
|
270
|
+
Logref;
|
|
271
|
+
constructor(opts) {
|
|
272
|
+
super({
|
|
273
|
+
name: "ServiceQuotaExceededException",
|
|
274
|
+
$fault: "client",
|
|
275
|
+
...opts,
|
|
276
|
+
});
|
|
277
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
278
|
+
this.Message = opts.Message;
|
|
279
|
+
this.Code = opts.Code;
|
|
280
|
+
this.Logref = opts.Logref;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class ThrottlingException extends RekognitionServiceException {
|
|
284
|
+
name = "ThrottlingException";
|
|
285
|
+
$fault = "server";
|
|
286
|
+
Message;
|
|
287
|
+
Code;
|
|
288
|
+
Logref;
|
|
289
|
+
constructor(opts) {
|
|
290
|
+
super({
|
|
291
|
+
name: "ThrottlingException",
|
|
292
|
+
$fault: "server",
|
|
293
|
+
...opts,
|
|
294
|
+
});
|
|
295
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
296
|
+
this.Message = opts.Message;
|
|
297
|
+
this.Code = opts.Code;
|
|
298
|
+
this.Logref = opts.Logref;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
class ImageTooLargeException extends RekognitionServiceException {
|
|
302
|
+
name = "ImageTooLargeException";
|
|
303
|
+
$fault = "client";
|
|
304
|
+
Message;
|
|
305
|
+
Code;
|
|
306
|
+
Logref;
|
|
307
|
+
constructor(opts) {
|
|
308
|
+
super({
|
|
309
|
+
name: "ImageTooLargeException",
|
|
310
|
+
$fault: "client",
|
|
311
|
+
...opts,
|
|
312
|
+
});
|
|
313
|
+
Object.setPrototypeOf(this, ImageTooLargeException.prototype);
|
|
314
|
+
this.Message = opts.Message;
|
|
315
|
+
this.Code = opts.Code;
|
|
316
|
+
this.Logref = opts.Logref;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
class InvalidImageFormatException extends RekognitionServiceException {
|
|
320
|
+
name = "InvalidImageFormatException";
|
|
321
|
+
$fault = "client";
|
|
322
|
+
Message;
|
|
323
|
+
Code;
|
|
324
|
+
Logref;
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "InvalidImageFormatException",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
Object.setPrototypeOf(this, InvalidImageFormatException.prototype);
|
|
332
|
+
this.Message = opts.Message;
|
|
333
|
+
this.Code = opts.Code;
|
|
334
|
+
this.Logref = opts.Logref;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
class InvalidS3ObjectException extends RekognitionServiceException {
|
|
338
|
+
name = "InvalidS3ObjectException";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
Message;
|
|
341
|
+
Code;
|
|
342
|
+
Logref;
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "InvalidS3ObjectException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
Object.setPrototypeOf(this, InvalidS3ObjectException.prototype);
|
|
350
|
+
this.Message = opts.Message;
|
|
351
|
+
this.Code = opts.Code;
|
|
352
|
+
this.Logref = opts.Logref;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
class LimitExceededException extends RekognitionServiceException {
|
|
356
|
+
name = "LimitExceededException";
|
|
357
|
+
$fault = "client";
|
|
358
|
+
Message;
|
|
359
|
+
Code;
|
|
360
|
+
Logref;
|
|
361
|
+
constructor(opts) {
|
|
362
|
+
super({
|
|
363
|
+
name: "LimitExceededException",
|
|
364
|
+
$fault: "client",
|
|
365
|
+
...opts,
|
|
366
|
+
});
|
|
367
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
368
|
+
this.Message = opts.Message;
|
|
369
|
+
this.Code = opts.Code;
|
|
370
|
+
this.Logref = opts.Logref;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
class ResourceInUseException extends RekognitionServiceException {
|
|
374
|
+
name = "ResourceInUseException";
|
|
375
|
+
$fault = "client";
|
|
376
|
+
Message;
|
|
377
|
+
Code;
|
|
378
|
+
Logref;
|
|
379
|
+
constructor(opts) {
|
|
380
|
+
super({
|
|
381
|
+
name: "ResourceInUseException",
|
|
382
|
+
$fault: "client",
|
|
383
|
+
...opts,
|
|
384
|
+
});
|
|
385
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
386
|
+
this.Message = opts.Message;
|
|
387
|
+
this.Code = opts.Code;
|
|
388
|
+
this.Logref = opts.Logref;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
class ResourceAlreadyExistsException extends RekognitionServiceException {
|
|
392
|
+
name = "ResourceAlreadyExistsException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
Message;
|
|
395
|
+
Code;
|
|
396
|
+
Logref;
|
|
397
|
+
constructor(opts) {
|
|
398
|
+
super({
|
|
399
|
+
name: "ResourceAlreadyExistsException",
|
|
400
|
+
$fault: "client",
|
|
401
|
+
...opts,
|
|
402
|
+
});
|
|
403
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
404
|
+
this.Message = opts.Message;
|
|
405
|
+
this.Code = opts.Code;
|
|
406
|
+
this.Logref = opts.Logref;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
class InvalidPolicyRevisionIdException extends RekognitionServiceException {
|
|
410
|
+
name = "InvalidPolicyRevisionIdException";
|
|
411
|
+
$fault = "client";
|
|
412
|
+
Message;
|
|
413
|
+
Code;
|
|
414
|
+
Logref;
|
|
415
|
+
constructor(opts) {
|
|
416
|
+
super({
|
|
417
|
+
name: "InvalidPolicyRevisionIdException",
|
|
418
|
+
$fault: "client",
|
|
419
|
+
...opts,
|
|
420
|
+
});
|
|
421
|
+
Object.setPrototypeOf(this, InvalidPolicyRevisionIdException.prototype);
|
|
422
|
+
this.Message = opts.Message;
|
|
423
|
+
this.Code = opts.Code;
|
|
424
|
+
this.Logref = opts.Logref;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
class InvalidPaginationTokenException extends RekognitionServiceException {
|
|
428
|
+
name = "InvalidPaginationTokenException";
|
|
429
|
+
$fault = "client";
|
|
430
|
+
Message;
|
|
431
|
+
Code;
|
|
432
|
+
Logref;
|
|
433
|
+
constructor(opts) {
|
|
434
|
+
super({
|
|
435
|
+
name: "InvalidPaginationTokenException",
|
|
436
|
+
$fault: "client",
|
|
437
|
+
...opts,
|
|
438
|
+
});
|
|
439
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
440
|
+
this.Message = opts.Message;
|
|
441
|
+
this.Code = opts.Code;
|
|
442
|
+
this.Logref = opts.Logref;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
class ResourceNotReadyException extends RekognitionServiceException {
|
|
446
|
+
name = "ResourceNotReadyException";
|
|
447
|
+
$fault = "client";
|
|
448
|
+
Message;
|
|
449
|
+
Code;
|
|
450
|
+
Logref;
|
|
451
|
+
constructor(opts) {
|
|
452
|
+
super({
|
|
453
|
+
name: "ResourceNotReadyException",
|
|
454
|
+
$fault: "client",
|
|
455
|
+
...opts,
|
|
456
|
+
});
|
|
457
|
+
Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
|
|
458
|
+
this.Message = opts.Message;
|
|
459
|
+
this.Code = opts.Code;
|
|
460
|
+
this.Logref = opts.Logref;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
class HumanLoopQuotaExceededException extends RekognitionServiceException {
|
|
464
|
+
name = "HumanLoopQuotaExceededException";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
ResourceType;
|
|
467
|
+
QuotaCode;
|
|
468
|
+
ServiceCode;
|
|
469
|
+
Message;
|
|
470
|
+
Code;
|
|
471
|
+
Logref;
|
|
472
|
+
constructor(opts) {
|
|
473
|
+
super({
|
|
474
|
+
name: "HumanLoopQuotaExceededException",
|
|
475
|
+
$fault: "client",
|
|
476
|
+
...opts,
|
|
477
|
+
});
|
|
478
|
+
Object.setPrototypeOf(this, HumanLoopQuotaExceededException.prototype);
|
|
479
|
+
this.ResourceType = opts.ResourceType;
|
|
480
|
+
this.QuotaCode = opts.QuotaCode;
|
|
481
|
+
this.ServiceCode = opts.ServiceCode;
|
|
482
|
+
this.Message = opts.Message;
|
|
483
|
+
this.Code = opts.Code;
|
|
484
|
+
this.Logref = opts.Logref;
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
class SessionNotFoundException extends RekognitionServiceException {
|
|
488
|
+
name = "SessionNotFoundException";
|
|
489
|
+
$fault = "client";
|
|
490
|
+
Message;
|
|
491
|
+
Code;
|
|
492
|
+
Logref;
|
|
493
|
+
constructor(opts) {
|
|
494
|
+
super({
|
|
495
|
+
name: "SessionNotFoundException",
|
|
496
|
+
$fault: "client",
|
|
497
|
+
...opts,
|
|
498
|
+
});
|
|
499
|
+
Object.setPrototypeOf(this, SessionNotFoundException.prototype);
|
|
500
|
+
this.Message = opts.Message;
|
|
501
|
+
this.Code = opts.Code;
|
|
502
|
+
this.Logref = opts.Logref;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
class InvalidManifestException extends RekognitionServiceException {
|
|
506
|
+
name = "InvalidManifestException";
|
|
507
|
+
$fault = "client";
|
|
508
|
+
Message;
|
|
509
|
+
Code;
|
|
510
|
+
Logref;
|
|
511
|
+
constructor(opts) {
|
|
512
|
+
super({
|
|
513
|
+
name: "InvalidManifestException",
|
|
514
|
+
$fault: "client",
|
|
515
|
+
...opts,
|
|
516
|
+
});
|
|
517
|
+
Object.setPrototypeOf(this, InvalidManifestException.prototype);
|
|
518
|
+
this.Message = opts.Message;
|
|
519
|
+
this.Code = opts.Code;
|
|
520
|
+
this.Logref = opts.Logref;
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
class MalformedPolicyDocumentException extends RekognitionServiceException {
|
|
524
|
+
name = "MalformedPolicyDocumentException";
|
|
525
|
+
$fault = "client";
|
|
526
|
+
Message;
|
|
527
|
+
Code;
|
|
528
|
+
Logref;
|
|
529
|
+
constructor(opts) {
|
|
530
|
+
super({
|
|
531
|
+
name: "MalformedPolicyDocumentException",
|
|
532
|
+
$fault: "client",
|
|
533
|
+
...opts,
|
|
534
|
+
});
|
|
535
|
+
Object.setPrototypeOf(this, MalformedPolicyDocumentException.prototype);
|
|
536
|
+
this.Message = opts.Message;
|
|
537
|
+
this.Code = opts.Code;
|
|
538
|
+
this.Logref = opts.Logref;
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
class VideoTooLargeException extends RekognitionServiceException {
|
|
542
|
+
name = "VideoTooLargeException";
|
|
543
|
+
$fault = "client";
|
|
544
|
+
Message;
|
|
545
|
+
Code;
|
|
546
|
+
Logref;
|
|
547
|
+
constructor(opts) {
|
|
548
|
+
super({
|
|
549
|
+
name: "VideoTooLargeException",
|
|
550
|
+
$fault: "client",
|
|
551
|
+
...opts,
|
|
552
|
+
});
|
|
553
|
+
Object.setPrototypeOf(this, VideoTooLargeException.prototype);
|
|
554
|
+
this.Message = opts.Message;
|
|
555
|
+
this.Code = opts.Code;
|
|
556
|
+
this.Logref = opts.Logref;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
const _A = "Asset";
|
|
561
|
+
const _AB = "AggregateBy";
|
|
562
|
+
const _AC = "AutoCreate";
|
|
563
|
+
const _ADE = "AccessDeniedException";
|
|
564
|
+
const _AF = "AssociatedFace";
|
|
565
|
+
const _AFL = "AssociatedFacesList";
|
|
566
|
+
const _AFR = "AssociateFacesRequest";
|
|
567
|
+
const _AFRs = "AssociateFacesResponse";
|
|
568
|
+
const _AFs = "AssociatedFaces";
|
|
569
|
+
const _AFss = "AssociateFaces";
|
|
570
|
+
const _AI = "AuditImage";
|
|
571
|
+
const _AIL = "AuditImagesLimit";
|
|
572
|
+
const _AIu = "AuditImages";
|
|
573
|
+
const _AM = "AudioMetadata";
|
|
574
|
+
const _AML = "AudioMetadataList";
|
|
575
|
+
const _AR = "AgeRange";
|
|
576
|
+
const _AU = "AutoUpdate";
|
|
577
|
+
const _Al = "Aliases";
|
|
578
|
+
const _Ar = "Arn";
|
|
579
|
+
const _As = "Assets";
|
|
580
|
+
const _At = "Attributes";
|
|
581
|
+
const _B = "Bytes";
|
|
582
|
+
const _BB = "BoundingBox";
|
|
583
|
+
const _BBC = "BoundingBoxCount";
|
|
584
|
+
const _BF = "BlackFrame";
|
|
585
|
+
const _BMV = "BaseModelVersion";
|
|
586
|
+
const _BP = "BodyParts";
|
|
587
|
+
const _BTTIS = "BillableTrainingTimeInSeconds";
|
|
588
|
+
const _Ba = "Background";
|
|
589
|
+
const _Be = "Beard";
|
|
590
|
+
const _Bl = "Blue";
|
|
591
|
+
const _Br = "Brightness";
|
|
592
|
+
const _Bu = "Bucket";
|
|
593
|
+
const _C = "Code";
|
|
594
|
+
const _CA = "CollectionArn";
|
|
595
|
+
const _CARN = "CollectionARN";
|
|
596
|
+
const _CBP = "CoversBodyPart";
|
|
597
|
+
const _CC = "ContentClassifiers";
|
|
598
|
+
const _CCR = "CreateCollectionRequest";
|
|
599
|
+
const _CCRr = "CreateCollectionResponse";
|
|
600
|
+
const _CCr = "CreateCollection";
|
|
601
|
+
const _CD = "CelebrityDetail";
|
|
602
|
+
const _CDR = "CreateDatasetRequest";
|
|
603
|
+
const _CDRr = "CreateDatasetResponse";
|
|
604
|
+
const _CDr = "CreateDataset";
|
|
605
|
+
const _CE = "ConflictException";
|
|
606
|
+
const _CF = "ComparedFace";
|
|
607
|
+
const _CFC = "CustomizationFeatureConfig";
|
|
608
|
+
const _CFCMC = "CustomizationFeatureContentModerationConfig";
|
|
609
|
+
const _CFL = "ComparedFaceList";
|
|
610
|
+
const _CFLS = "CreateFaceLivenessSession";
|
|
611
|
+
const _CFLSR = "CreateFaceLivenessSessionRequest";
|
|
612
|
+
const _CFLSRS = "CreateFaceLivenessSessionRequestSettings";
|
|
613
|
+
const _CFLSRr = "CreateFaceLivenessSessionResponse";
|
|
614
|
+
const _CFM = "CompareFacesMatch";
|
|
615
|
+
const _CFML = "CompareFacesMatchList";
|
|
616
|
+
const _CFR = "CompareFacesRequest";
|
|
617
|
+
const _CFRo = "CompareFacesResponse";
|
|
618
|
+
const _CFUL = "CompareFacesUnmatchList";
|
|
619
|
+
const _CFe = "CelebrityFaces";
|
|
620
|
+
const _CFo = "CompareFaces";
|
|
621
|
+
const _CH = "ConnectedHome";
|
|
622
|
+
const _CHFU = "ConnectedHomeForUpdate";
|
|
623
|
+
const _CHS = "ConnectedHomeSettings";
|
|
624
|
+
const _CHSFU = "ConnectedHomeSettingsForUpdate";
|
|
625
|
+
const _CI = "CollectionId";
|
|
626
|
+
const _CIo = "CollectionIds";
|
|
627
|
+
const _CL = "CustomLabel";
|
|
628
|
+
const _CLe = "CelebrityList";
|
|
629
|
+
const _CLo = "ContainsLabels";
|
|
630
|
+
const _CLu = "CustomLabels";
|
|
631
|
+
const _CM = "ContentModeration";
|
|
632
|
+
const _CMD = "ContentModerationDetection";
|
|
633
|
+
const _CMDo = "ContentModerationDetections";
|
|
634
|
+
const _CP = "ChallengePreference";
|
|
635
|
+
const _CPR = "CreateProjectRequest";
|
|
636
|
+
const _CPRr = "CreateProjectResponse";
|
|
637
|
+
const _CPV = "CopyProjectVersion";
|
|
638
|
+
const _CPVR = "CopyProjectVersionRequest";
|
|
639
|
+
const _CPVRo = "CopyProjectVersionResponse";
|
|
640
|
+
const _CPVRr = "CreateProjectVersionRequest";
|
|
641
|
+
const _CPVRre = "CreateProjectVersionResponse";
|
|
642
|
+
const _CPVr = "CreateProjectVersion";
|
|
643
|
+
const _CPh = "ChallengePreferences";
|
|
644
|
+
const _CPr = "CreateProject";
|
|
645
|
+
const _CR = "CelebrityRecognition";
|
|
646
|
+
const _CRT = "ClientRequestToken";
|
|
647
|
+
const _CRe = "CelebrityRecognitions";
|
|
648
|
+
const _CRo = "ColorRange";
|
|
649
|
+
const _CSIF = "ComparedSourceImageFace";
|
|
650
|
+
const _CSP = "CreateStreamProcessor";
|
|
651
|
+
const _CSPR = "CreateStreamProcessorRequest";
|
|
652
|
+
const _CSPRr = "CreateStreamProcessorResponse";
|
|
653
|
+
const _CSSC = "CSSColor";
|
|
654
|
+
const _CT = "ContentTypes";
|
|
655
|
+
const _CTo = "ContentType";
|
|
656
|
+
const _CTom = "CompletionTimestamp";
|
|
657
|
+
const _CTon = "ConfidenceThreshold";
|
|
658
|
+
const _CTr = "CreationTimestamp";
|
|
659
|
+
const _CU = "CreateUser";
|
|
660
|
+
const _CUR = "CreateUserRequest";
|
|
661
|
+
const _CURr = "CreateUserResponse";
|
|
662
|
+
const _Ca = "Categories";
|
|
663
|
+
const _Ce = "Celebrity";
|
|
664
|
+
const _Cel = "Celebrities";
|
|
665
|
+
const _Ch = "Challenge";
|
|
666
|
+
const _Cha = "Changes";
|
|
667
|
+
const _Co = "Codec";
|
|
668
|
+
const _Con = "Confidence";
|
|
669
|
+
const _Cont = "Contrast";
|
|
670
|
+
const _D = "Datasets";
|
|
671
|
+
const _DA = "DatasetArn";
|
|
672
|
+
const _DAa = "DataAttributes";
|
|
673
|
+
const _DAe = "DetectionAttributes";
|
|
674
|
+
const _DC = "DatasetChanges";
|
|
675
|
+
const _DCL = "DetectCustomLabels";
|
|
676
|
+
const _DCLR = "DetectCustomLabelsRequest";
|
|
677
|
+
const _DCLRe = "DetectCustomLabelsResponse";
|
|
678
|
+
const _DCR = "DeleteCollectionRequest";
|
|
679
|
+
const _DCRe = "DeleteCollectionResponse";
|
|
680
|
+
const _DCRes = "DescribeCollectionRequest";
|
|
681
|
+
const _DCResc = "DescribeCollectionResponse";
|
|
682
|
+
const _DCe = "DeleteCollection";
|
|
683
|
+
const _DCes = "DescribeCollection";
|
|
684
|
+
const _DCo = "DominantColors";
|
|
685
|
+
const _DCom = "DominantColor";
|
|
686
|
+
const _DD = "DatasetDescription";
|
|
687
|
+
const _DDE = "DistributeDatasetEntries";
|
|
688
|
+
const _DDER = "DistributeDatasetEntriesRequest";
|
|
689
|
+
const _DDERi = "DistributeDatasetEntriesResponse";
|
|
690
|
+
const _DDML = "DistributeDatasetMetadataList";
|
|
691
|
+
const _DDR = "DeleteDatasetRequest";
|
|
692
|
+
const _DDRe = "DeleteDatasetResponse";
|
|
693
|
+
const _DDRes = "DescribeDatasetRequest";
|
|
694
|
+
const _DDResc = "DescribeDatasetResponse";
|
|
695
|
+
const _DDe = "DeleteDataset";
|
|
696
|
+
const _DDes = "DescribeDataset";
|
|
697
|
+
const _DDi = "DistributeDataset";
|
|
698
|
+
const _DE = "DatasetEntries";
|
|
699
|
+
const _DF = "DeletedFaces";
|
|
700
|
+
const _DFL = "DisassociatedFacesList";
|
|
701
|
+
const _DFR = "DeleteFacesRequest";
|
|
702
|
+
const _DFRe = "DeleteFacesResponse";
|
|
703
|
+
const _DFRet = "DetectFacesRequest";
|
|
704
|
+
const _DFRete = "DetectFacesResponse";
|
|
705
|
+
const _DFRi = "DisassociateFacesRequest";
|
|
706
|
+
const _DFRis = "DisassociateFacesResponse";
|
|
707
|
+
const _DFe = "DetectionFilter";
|
|
708
|
+
const _DFel = "DeleteFaces";
|
|
709
|
+
const _DFet = "DetectFaces";
|
|
710
|
+
const _DFi = "DisassociatedFace";
|
|
711
|
+
const _DFis = "DisassociatedFaces";
|
|
712
|
+
const _DFisa = "DisassociateFaces";
|
|
713
|
+
const _DFu = "DurationFrames";
|
|
714
|
+
const _DL = "DetectLabels";
|
|
715
|
+
const _DLD = "DatasetLabelDescription";
|
|
716
|
+
const _DLDa = "DatasetLabelDescriptions";
|
|
717
|
+
const _DLIB = "DetectLabelsImageBackground";
|
|
718
|
+
const _DLIF = "DetectLabelsImageForeground";
|
|
719
|
+
const _DLIP = "DetectLabelsImageProperties";
|
|
720
|
+
const _DLIPS = "DetectLabelsImagePropertiesSettings";
|
|
721
|
+
const _DLIQ = "DetectLabelsImageQuality";
|
|
722
|
+
const _DLR = "DetectLabelsRequest";
|
|
723
|
+
const _DLRe = "DetectLabelsResponse";
|
|
724
|
+
const _DLS = "DatasetLabelStats";
|
|
725
|
+
const _DLSe = "DetectLabelsSettings";
|
|
726
|
+
const _DM = "DurationMillis";
|
|
727
|
+
const _DML = "DetectModerationLabels";
|
|
728
|
+
const _DMLR = "DetectModerationLabelsRequest";
|
|
729
|
+
const _DMLRe = "DetectModerationLabelsResponse";
|
|
730
|
+
const _DMLa = "DatasetMetadataList";
|
|
731
|
+
const _DMa = "DatasetMetadata";
|
|
732
|
+
const _DP = "DeleteProject";
|
|
733
|
+
const _DPA = "DestinationProjectArn";
|
|
734
|
+
const _DPE = "DetectProtectiveEquipment";
|
|
735
|
+
const _DPER = "DetectProtectiveEquipmentRequest";
|
|
736
|
+
const _DPERe = "DetectProtectiveEquipmentResponse";
|
|
737
|
+
const _DPP = "DeleteProjectPolicy";
|
|
738
|
+
const _DPPR = "DeleteProjectPolicyRequest";
|
|
739
|
+
const _DPPRe = "DeleteProjectPolicyResponse";
|
|
740
|
+
const _DPR = "DeleteProjectRequest";
|
|
741
|
+
const _DPRe = "DeleteProjectResponse";
|
|
742
|
+
const _DPRes = "DescribeProjectsRequest";
|
|
743
|
+
const _DPResc = "DescribeProjectsResponse";
|
|
744
|
+
const _DPV = "DeleteProjectVersion";
|
|
745
|
+
const _DPVR = "DeleteProjectVersionRequest";
|
|
746
|
+
const _DPVRe = "DeleteProjectVersionResponse";
|
|
747
|
+
const _DPVRes = "DescribeProjectVersionsRequest";
|
|
748
|
+
const _DPVResc = "DescribeProjectVersionsResponse";
|
|
749
|
+
const _DPVe = "DescribeProjectVersions";
|
|
750
|
+
const _DPe = "DescribeProjects";
|
|
751
|
+
const _DS = "DatasetSource";
|
|
752
|
+
const _DSMPTE = "DurationSMPTE";
|
|
753
|
+
const _DSP = "DataSharingPreference";
|
|
754
|
+
const _DSPFU = "DataSharingPreferenceForUpdate";
|
|
755
|
+
const _DSPR = "DeleteStreamProcessorRequest";
|
|
756
|
+
const _DSPRe = "DeleteStreamProcessorResponse";
|
|
757
|
+
const _DSPRes = "DescribeStreamProcessorRequest";
|
|
758
|
+
const _DSPResc = "DescribeStreamProcessorResponse";
|
|
759
|
+
const _DSPe = "DeleteStreamProcessor";
|
|
760
|
+
const _DSPes = "DescribeStreamProcessor";
|
|
761
|
+
const _DSa = "DatasetStats";
|
|
762
|
+
const _DT = "DatasetType";
|
|
763
|
+
const _DTF = "DetectTextFilters";
|
|
764
|
+
const _DTR = "DetectTextRequest";
|
|
765
|
+
const _DTRe = "DetectTextResponse";
|
|
766
|
+
const _DTe = "DetectedText";
|
|
767
|
+
const _DTet = "DetectText";
|
|
768
|
+
const _DU = "DeleteUser";
|
|
769
|
+
const _DUR = "DeleteUserRequest";
|
|
770
|
+
const _DURe = "DeleteUserResponse";
|
|
771
|
+
const _E = "Emotions";
|
|
772
|
+
const _EC = "EntryCount";
|
|
773
|
+
const _ED = "EquipmentDetection";
|
|
774
|
+
const _EDq = "EquipmentDetections";
|
|
775
|
+
const _EDy = "EyeDirection";
|
|
776
|
+
const _EE = "ErrorEntries";
|
|
777
|
+
const _EFN = "EndFrameNumber";
|
|
778
|
+
const _EII = "ExternalImageId";
|
|
779
|
+
const _EO = "EyeOpen";
|
|
780
|
+
const _EOy = "EyesOpen";
|
|
781
|
+
const _ER = "EvaluationResult";
|
|
782
|
+
const _ETM = "EndTimestampMillis";
|
|
783
|
+
const _ETSMPTE = "EndTimecodeSMPTE";
|
|
784
|
+
const _Em = "Emotion";
|
|
785
|
+
const _Ey = "Eyeglasses";
|
|
786
|
+
const _F = "Face";
|
|
787
|
+
const _FA = "FaceAttributes";
|
|
788
|
+
const _FC = "FeatureConfig";
|
|
789
|
+
const _FCa = "FaceCount";
|
|
790
|
+
const _FD = "FaceDetails";
|
|
791
|
+
const _FDA = "FlowDefinitionArn";
|
|
792
|
+
const _FDL = "FaceDetailList";
|
|
793
|
+
const _FDa = "FaceDetail";
|
|
794
|
+
const _FDac = "FaceDetection";
|
|
795
|
+
const _FDace = "FaceDetections";
|
|
796
|
+
const _FDai = "FailureDetails";
|
|
797
|
+
const _FH = "FrameHeight";
|
|
798
|
+
const _FI = "FaceId";
|
|
799
|
+
const _FIa = "FaceIds";
|
|
800
|
+
const _FL = "FaceList";
|
|
801
|
+
const _FM = "FaceMatches";
|
|
802
|
+
const _FML = "FaceMatchList";
|
|
803
|
+
const _FMT = "FaceMatchThreshold";
|
|
804
|
+
const _FMV = "FaceModelVersion";
|
|
805
|
+
const _FMVa = "FaceModelVersions";
|
|
806
|
+
const _FMa = "FaceMatch";
|
|
807
|
+
const _FN = "FragmentNumber";
|
|
808
|
+
const _FO = "FaceOccluded";
|
|
809
|
+
const _FR = "FaceRecord";
|
|
810
|
+
const _FRL = "FaceRecordList";
|
|
811
|
+
const _FRa = "FaceRecords";
|
|
812
|
+
const _FRr = "FrameRate";
|
|
813
|
+
const _FS = "F1Score";
|
|
814
|
+
const _FSS = "FaceSearchSettings";
|
|
815
|
+
const _FSa = "FaceSearch";
|
|
816
|
+
const _FW = "FrameWidth";
|
|
817
|
+
const _Fa = "Faces";
|
|
818
|
+
const _Fe = "Feature";
|
|
819
|
+
const _Fea = "Features";
|
|
820
|
+
const _Fi = "Filters";
|
|
821
|
+
const _Fo = "Foreground";
|
|
822
|
+
const _For = "Format";
|
|
823
|
+
const _G = "Geometry";
|
|
824
|
+
const _GCI = "GetCelebrityInfo";
|
|
825
|
+
const _GCIR = "GetCelebrityInfoRequest";
|
|
826
|
+
const _GCIRe = "GetCelebrityInfoResponse";
|
|
827
|
+
const _GCM = "GetContentModeration";
|
|
828
|
+
const _GCMR = "GetContentModerationRequest";
|
|
829
|
+
const _GCMRM = "GetContentModerationRequestMetadata";
|
|
830
|
+
const _GCMRe = "GetContentModerationResponse";
|
|
831
|
+
const _GCR = "GetCelebrityRecognition";
|
|
832
|
+
const _GCRR = "GetCelebrityRecognitionRequest";
|
|
833
|
+
const _GCRRe = "GetCelebrityRecognitionResponse";
|
|
834
|
+
const _GFD = "GetFaceDetection";
|
|
835
|
+
const _GFDR = "GetFaceDetectionRequest";
|
|
836
|
+
const _GFDRe = "GetFaceDetectionResponse";
|
|
837
|
+
const _GFLSR = "GetFaceLivenessSessionResults";
|
|
838
|
+
const _GFLSRR = "GetFaceLivenessSessionResultsRequest";
|
|
839
|
+
const _GFLSRRe = "GetFaceLivenessSessionResultsResponse";
|
|
840
|
+
const _GFS = "GetFaceSearch";
|
|
841
|
+
const _GFSR = "GetFaceSearchRequest";
|
|
842
|
+
const _GFSRe = "GetFaceSearchResponse";
|
|
843
|
+
const _GL = "GeneralLabels";
|
|
844
|
+
const _GLD = "GetLabelDetection";
|
|
845
|
+
const _GLDR = "GetLabelDetectionRequest";
|
|
846
|
+
const _GLDRM = "GetLabelDetectionRequestMetadata";
|
|
847
|
+
const _GLDRe = "GetLabelDetectionResponse";
|
|
848
|
+
const _GLS = "GeneralLabelsSettings";
|
|
849
|
+
const _GMAJ = "GetMediaAnalysisJob";
|
|
850
|
+
const _GMAJR = "GetMediaAnalysisJobRequest";
|
|
851
|
+
const _GMAJRe = "GetMediaAnalysisJobResponse";
|
|
852
|
+
const _GPT = "GetPersonTracking";
|
|
853
|
+
const _GPTR = "GetPersonTrackingRequest";
|
|
854
|
+
const _GPTRe = "GetPersonTrackingResponse";
|
|
855
|
+
const _GRM = "GetRequestMetadata";
|
|
856
|
+
const _GSD = "GetSegmentDetection";
|
|
857
|
+
const _GSDR = "GetSegmentDetectionRequest";
|
|
858
|
+
const _GSDRe = "GetSegmentDetectionResponse";
|
|
859
|
+
const _GT = "GroundTruth";
|
|
860
|
+
const _GTD = "GetTextDetection";
|
|
861
|
+
const _GTDR = "GetTextDetectionRequest";
|
|
862
|
+
const _GTDRe = "GetTextDetectionResponse";
|
|
863
|
+
const _GTM = "GroundTruthManifest";
|
|
864
|
+
const _Ge = "Gender";
|
|
865
|
+
const _Gr = "Green";
|
|
866
|
+
const _H = "High";
|
|
867
|
+
const _HC = "HexCode";
|
|
868
|
+
const _HE = "HasErrors";
|
|
869
|
+
const _HLA = "HumanLoopArn";
|
|
870
|
+
const _HLACER = "HumanLoopActivationConditionsEvaluationResults";
|
|
871
|
+
const _HLAO = "HumanLoopActivationOutput";
|
|
872
|
+
const _HLAR = "HumanLoopActivationReasons";
|
|
873
|
+
const _HLC = "HumanLoopConfig";
|
|
874
|
+
const _HLDA = "HumanLoopDataAttributes";
|
|
875
|
+
const _HLN = "HumanLoopName";
|
|
876
|
+
const _HLQEE = "HumanLoopQuotaExceededException";
|
|
877
|
+
const _He = "Height";
|
|
878
|
+
const _I = "Id";
|
|
879
|
+
const _IF = "IndexFaces";
|
|
880
|
+
const _IFMV = "IndexFacesModelVersion";
|
|
881
|
+
const _IFR = "IndexFacesRequest";
|
|
882
|
+
const _IFRn = "IndexFacesResponse";
|
|
883
|
+
const _II = "ImageId";
|
|
884
|
+
const _IIFE = "InvalidImageFormatException";
|
|
885
|
+
const _IME = "InvalidManifestException";
|
|
886
|
+
const _IP = "ImageProperties";
|
|
887
|
+
const _IPE = "InvalidParameterException";
|
|
888
|
+
const _IPME = "IdempotentParameterMismatchException";
|
|
889
|
+
const _IPRIE = "InvalidPolicyRevisionIdException";
|
|
890
|
+
const _IPTE = "InvalidPaginationTokenException";
|
|
891
|
+
const _IQ = "ImageQuality";
|
|
892
|
+
const _ISE = "InternalServerError";
|
|
893
|
+
const _ISOE = "InvalidS3ObjectException";
|
|
894
|
+
const _ITLE = "ImageTooLargeException";
|
|
895
|
+
const _Im = "Image";
|
|
896
|
+
const _In = "Input";
|
|
897
|
+
const _Ind = "Index";
|
|
898
|
+
const _Ins = "Instance";
|
|
899
|
+
const _Inst = "Instances";
|
|
900
|
+
const _JI = "JobId";
|
|
901
|
+
const _JN = "JobName";
|
|
902
|
+
const _JS = "JobStatus";
|
|
903
|
+
const _JT = "JobTag";
|
|
904
|
+
const _KDS = "KinesisDataStream";
|
|
905
|
+
const _KG = "KnownGender";
|
|
906
|
+
const _KKI = "KmsKeyId";
|
|
907
|
+
const _KP = "KeyPrefix";
|
|
908
|
+
const _KVS = "KinesisVideoStream";
|
|
909
|
+
const _KVSSS = "KinesisVideoStreamStartSelector";
|
|
910
|
+
const _KVSSSS = "KVSStreamStartSelector";
|
|
911
|
+
const _L = "Logref";
|
|
912
|
+
const _LA = "LabelAlias";
|
|
913
|
+
const _LAa = "LabelAliases";
|
|
914
|
+
const _LC = "LabelCategory";
|
|
915
|
+
const _LCEF = "LabelCategoryExclusionFilters";
|
|
916
|
+
const _LCIF = "LabelCategoryInclusionFilters";
|
|
917
|
+
const _LCR = "ListCollectionsRequest";
|
|
918
|
+
const _LCRi = "ListCollectionsResponse";
|
|
919
|
+
const _LCa = "LabelCategories";
|
|
920
|
+
const _LCi = "ListCollections";
|
|
921
|
+
const _LD = "LabelDetection";
|
|
922
|
+
const _LDE = "ListDatasetEntries";
|
|
923
|
+
const _LDER = "ListDatasetEntriesRequest";
|
|
924
|
+
const _LDERi = "ListDatasetEntriesResponse";
|
|
925
|
+
const _LDL = "ListDatasetLabels";
|
|
926
|
+
const _LDLR = "ListDatasetLabelsRequest";
|
|
927
|
+
const _LDLRi = "ListDatasetLabelsResponse";
|
|
928
|
+
const _LDS = "LabelDetectionSettings";
|
|
929
|
+
const _LDa = "LabelDetections";
|
|
930
|
+
const _LE = "LabeledEntries";
|
|
931
|
+
const _LEE = "LimitExceededException";
|
|
932
|
+
const _LEF = "LabelExclusionFilters";
|
|
933
|
+
const _LF = "ListFaces";
|
|
934
|
+
const _LFR = "ListFacesRequest";
|
|
935
|
+
const _LFRi = "ListFacesResponse";
|
|
936
|
+
const _LIB = "LivenessImageBlob";
|
|
937
|
+
const _LIF = "LabelInclusionFilters";
|
|
938
|
+
const _LMAJ = "ListMediaAnalysisJobs";
|
|
939
|
+
const _LMAJR = "ListMediaAnalysisJobsRequest";
|
|
940
|
+
const _LMAJRi = "ListMediaAnalysisJobsResponse";
|
|
941
|
+
const _LMV = "LabelModelVersion";
|
|
942
|
+
const _LN = "LabelName";
|
|
943
|
+
const _LOC = "LivenessOutputConfig";
|
|
944
|
+
const _LPP = "ListProjectPolicies";
|
|
945
|
+
const _LPPR = "ListProjectPoliciesRequest";
|
|
946
|
+
const _LPPRi = "ListProjectPoliciesResponse";
|
|
947
|
+
const _LS = "LabelStats";
|
|
948
|
+
const _LSP = "ListStreamProcessors";
|
|
949
|
+
const _LSPR = "ListStreamProcessorsRequest";
|
|
950
|
+
const _LSPRi = "ListStreamProcessorsResponse";
|
|
951
|
+
const _LTFR = "ListTagsForResource";
|
|
952
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
953
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
954
|
+
const _LU = "ListUsers";
|
|
955
|
+
const _LUR = "ListUsersRequest";
|
|
956
|
+
const _LURi = "ListUsersResponse";
|
|
957
|
+
const _LUT = "LastUpdatedTimestamp";
|
|
958
|
+
const _LUTa = "LastUpdateTimestamp";
|
|
959
|
+
const _La = "Landmarks";
|
|
960
|
+
const _Lab = "Labels";
|
|
961
|
+
const _Labe = "Label";
|
|
962
|
+
const _Label = "Labeled";
|
|
963
|
+
const _Lan = "Landmark";
|
|
964
|
+
const _Le = "Left";
|
|
965
|
+
const _Lo = "Low";
|
|
966
|
+
const _M = "Message";
|
|
967
|
+
const _MADMLC = "MediaAnalysisDetectModerationLabelsConfig";
|
|
968
|
+
const _MAI = "MediaAnalysisInput";
|
|
969
|
+
const _MAJ = "MediaAnalysisJobs";
|
|
970
|
+
const _MAJD = "MediaAnalysisJobDescription";
|
|
971
|
+
const _MAJDe = "MediaAnalysisJobDescriptions";
|
|
972
|
+
const _MAJFD = "MediaAnalysisJobFailureDetails";
|
|
973
|
+
const _MAMS = "MediaAnalysisManifestSummary";
|
|
974
|
+
const _MAMV = "MediaAnalysisModelVersions";
|
|
975
|
+
const _MAOC = "MediaAnalysisOperationsConfig";
|
|
976
|
+
const _MAOCe = "MediaAnalysisOutputConfig";
|
|
977
|
+
const _MAR = "MediaAnalysisResults";
|
|
978
|
+
const _MBBH = "MinBoundingBoxHeight";
|
|
979
|
+
const _MBBW = "MinBoundingBoxWidth";
|
|
980
|
+
const _MC = "MatchConfidence";
|
|
981
|
+
const _MCP = "MinCoveragePercentage";
|
|
982
|
+
const _MCi = "MinConfidence";
|
|
983
|
+
const _MDC = "MaxDominantColors";
|
|
984
|
+
const _MDIS = "MaxDurationInSeconds";
|
|
985
|
+
const _MF = "MaxFaces";
|
|
986
|
+
const _MIU = "MinInferenceUnits";
|
|
987
|
+
const _MIUa = "MaxInferenceUnits";
|
|
988
|
+
const _ML = "ModerationLabel";
|
|
989
|
+
const _MLa = "MaxLabels";
|
|
990
|
+
const _MLo = "ModerationLabels";
|
|
991
|
+
const _MMV = "ModerationModelVersion";
|
|
992
|
+
const _MO = "MouthOpen";
|
|
993
|
+
const _MPDE = "MalformedPolicyDocumentException";
|
|
994
|
+
const _MPT = "MaxPixelThreshold";
|
|
995
|
+
const _MR = "MaxResults";
|
|
996
|
+
const _MS = "ManifestSummary";
|
|
997
|
+
const _MSC = "MinSegmentConfidence";
|
|
998
|
+
const _MU = "MatchedUser";
|
|
999
|
+
const _MUa = "MaxUsers";
|
|
1000
|
+
const _MV = "ModelVersions";
|
|
1001
|
+
const _MVo = "ModelVersion";
|
|
1002
|
+
const _Ma = "Maximum";
|
|
1003
|
+
const _Mi = "Minimum";
|
|
1004
|
+
const _Mo = "Moderation";
|
|
1005
|
+
const _Mu = "Mustache";
|
|
1006
|
+
const _N = "Name";
|
|
1007
|
+
const _NC = "NotificationChannel";
|
|
1008
|
+
const _NOC = "NumberOfChannels";
|
|
1009
|
+
const _NT = "NextToken";
|
|
1010
|
+
const _O = "Output";
|
|
1011
|
+
const _OC = "OutputConfig";
|
|
1012
|
+
const _OCp = "OperationsConfig";
|
|
1013
|
+
const _OCr = "OrientationCorrection";
|
|
1014
|
+
const _OI = "OptIn";
|
|
1015
|
+
const _P = "Pose";
|
|
1016
|
+
const _PA = "ProjectArn";
|
|
1017
|
+
const _PD = "ProjectDescriptions";
|
|
1018
|
+
const _PDe = "PersonDetail";
|
|
1019
|
+
const _PDer = "PersonDetection";
|
|
1020
|
+
const _PDers = "PersonDetections";
|
|
1021
|
+
const _PDo = "PolicyDocument";
|
|
1022
|
+
const _PDr = "ProjectDescription";
|
|
1023
|
+
const _PEBP = "ProtectiveEquipmentBodyPart";
|
|
1024
|
+
const _PEMV = "ProtectiveEquipmentModelVersion";
|
|
1025
|
+
const _PEP = "ProtectiveEquipmentPerson";
|
|
1026
|
+
const _PEPr = "ProtectiveEquipmentPersons";
|
|
1027
|
+
const _PES = "ProtectiveEquipmentSummary";
|
|
1028
|
+
const _PESA = "ProtectiveEquipmentSummarizationAttributes";
|
|
1029
|
+
const _PI = "PersonsIndeterminate";
|
|
1030
|
+
const _PIa = "ParentId";
|
|
1031
|
+
const _PM = "PersonMatch";
|
|
1032
|
+
const _PMe = "PersonMatches";
|
|
1033
|
+
const _PN = "ProjectName";
|
|
1034
|
+
const _PNa = "ParentName";
|
|
1035
|
+
const _PNo = "PolicyName";
|
|
1036
|
+
const _PNr = "ProjectNames";
|
|
1037
|
+
const _PP = "PixelPercent";
|
|
1038
|
+
const _PPP = "PutProjectPolicy";
|
|
1039
|
+
const _PPPR = "PutProjectPolicyRequest";
|
|
1040
|
+
const _PPPRu = "PutProjectPolicyResponse";
|
|
1041
|
+
const _PPr = "ProjectPolicies";
|
|
1042
|
+
const _PPro = "ProjectPolicy";
|
|
1043
|
+
const _PRI = "PolicyRevisionId";
|
|
1044
|
+
const _PT = "ProducerTimestamp";
|
|
1045
|
+
const _PTD = "ParametersToDelete";
|
|
1046
|
+
const _PTEE = "ProvisionedThroughputExceededException";
|
|
1047
|
+
const _PV = "ProjectVersion";
|
|
1048
|
+
const _PVA = "ProjectVersionArn";
|
|
1049
|
+
const _PVD = "ProjectVersionDescriptions";
|
|
1050
|
+
const _PVDr = "ProjectVersionDescription";
|
|
1051
|
+
const _PWRE = "PersonsWithRequiredEquipment";
|
|
1052
|
+
const _PWREe = "PersonsWithoutRequiredEquipment";
|
|
1053
|
+
const _Pa = "Parents";
|
|
1054
|
+
const _Par = "Parent";
|
|
1055
|
+
const _Pe = "Persons";
|
|
1056
|
+
const _Per = "Person";
|
|
1057
|
+
const _Pi = "Pitch";
|
|
1058
|
+
const _Po = "Polygon";
|
|
1059
|
+
const _Poi = "Point";
|
|
1060
|
+
const _Q = "Quality";
|
|
1061
|
+
const _QC = "QuotaCode";
|
|
1062
|
+
const _QF = "QualityFilter";
|
|
1063
|
+
const _R = "Red";
|
|
1064
|
+
const _RA = "RoleArn";
|
|
1065
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
1066
|
+
const _RAe = "ResourceArn";
|
|
1067
|
+
const _RC = "RecognizeCelebrities";
|
|
1068
|
+
const _RCR = "RecognizeCelebritiesRequest";
|
|
1069
|
+
const _RCRe = "RecognizeCelebritiesResponse";
|
|
1070
|
+
const _RET = "RequiredEquipmentTypes";
|
|
1071
|
+
const _RI = "ReferenceImage";
|
|
1072
|
+
const _RIUE = "ResourceInUseException";
|
|
1073
|
+
const _RNFE = "ResourceNotFoundException";
|
|
1074
|
+
const _RNRE = "ResourceNotReadyException";
|
|
1075
|
+
const _ROI = "RegionsOfInterest";
|
|
1076
|
+
const _ROIFU = "RegionsOfInterestForUpdate";
|
|
1077
|
+
const _ROIe = "RegionOfInterest";
|
|
1078
|
+
const _RT = "ResourceType";
|
|
1079
|
+
const _Re = "Results";
|
|
1080
|
+
const _Rea = "Reasons";
|
|
1081
|
+
const _Ro = "Roll";
|
|
1082
|
+
const _S = "Smile";
|
|
1083
|
+
const _SA = "SummarizationAttributes";
|
|
1084
|
+
const _SB = "SortBy";
|
|
1085
|
+
const _SBu = "S3Bucket";
|
|
1086
|
+
const _SC = "ServiceCode";
|
|
1087
|
+
const _SCM = "StartContentModeration";
|
|
1088
|
+
const _SCMR = "StartContentModerationRequest";
|
|
1089
|
+
const _SCMRt = "StartContentModerationResponse";
|
|
1090
|
+
const _SCR = "StartCelebrityRecognition";
|
|
1091
|
+
const _SCRR = "StartCelebrityRecognitionRequest";
|
|
1092
|
+
const _SCRRt = "StartCelebrityRecognitionResponse";
|
|
1093
|
+
const _SCi = "SimplifiedColor";
|
|
1094
|
+
const _SCt = "StatusCode";
|
|
1095
|
+
const _SD = "S3Destination";
|
|
1096
|
+
const _SDe = "SegmentDetection";
|
|
1097
|
+
const _SDeg = "SegmentDetections";
|
|
1098
|
+
const _SF = "SearchedFace";
|
|
1099
|
+
const _SFBB = "SearchedFaceBoundingBox";
|
|
1100
|
+
const _SFBI = "SearchFacesByImage";
|
|
1101
|
+
const _SFBIR = "SearchFacesByImageRequest";
|
|
1102
|
+
const _SFBIRe = "SearchFacesByImageResponse";
|
|
1103
|
+
const _SFC = "SearchedFaceConfidence";
|
|
1104
|
+
const _SFD = "SearchedFaceDetails";
|
|
1105
|
+
const _SFDR = "StartFaceDetectionRequest";
|
|
1106
|
+
const _SFDRt = "StartFaceDetectionResponse";
|
|
1107
|
+
const _SFDt = "StartFaceDetection";
|
|
1108
|
+
const _SFI = "SearchedFaceId";
|
|
1109
|
+
const _SFN = "StartFrameNumber";
|
|
1110
|
+
const _SFR = "SearchFacesRequest";
|
|
1111
|
+
const _SFRe = "SearchFacesResponse";
|
|
1112
|
+
const _SFS = "StartFaceSearch";
|
|
1113
|
+
const _SFSR = "StartFaceSearchRequest";
|
|
1114
|
+
const _SFSRt = "StartFaceSearchResponse";
|
|
1115
|
+
const _SFU = "SettingsForUpdate";
|
|
1116
|
+
const _SFe = "SearchFaces";
|
|
1117
|
+
const _SFh = "ShotFilter";
|
|
1118
|
+
const _SI = "SourceImage";
|
|
1119
|
+
const _SIF = "SourceImageFace";
|
|
1120
|
+
const _SIOC = "SourceImageOrientationCorrection";
|
|
1121
|
+
const _SIe = "SessionId";
|
|
1122
|
+
const _SJHLACER = "SynthesizedJsonHumanLoopActivationConditionsEvaluationResults";
|
|
1123
|
+
const _SKP = "S3KeyPrefix";
|
|
1124
|
+
const _SLD = "StartLabelDetection";
|
|
1125
|
+
const _SLDR = "StartLabelDetectionRequest";
|
|
1126
|
+
const _SLDRt = "StartLabelDetectionResponse";
|
|
1127
|
+
const _SM = "StatusMessage";
|
|
1128
|
+
const _SMAJ = "StartMediaAnalysisJob";
|
|
1129
|
+
const _SMAJR = "StartMediaAnalysisJobRequest";
|
|
1130
|
+
const _SMAJRt = "StartMediaAnalysisJobResponse";
|
|
1131
|
+
const _SMC = "StatusMessageCode";
|
|
1132
|
+
const _SNFE = "SessionNotFoundException";
|
|
1133
|
+
const _SNSTA = "SNSTopicArn";
|
|
1134
|
+
const _SO = "S3Object";
|
|
1135
|
+
const _SP = "StreamProcessors";
|
|
1136
|
+
const _SPA = "SourceProjectArn";
|
|
1137
|
+
const _SPAt = "StreamProcessorArn";
|
|
1138
|
+
const _SPDSP = "StreamProcessorDataSharingPreference";
|
|
1139
|
+
const _SPI = "StreamProcessorInput";
|
|
1140
|
+
const _SPL = "StreamProcessorList";
|
|
1141
|
+
const _SPNC = "StreamProcessorNotificationChannel";
|
|
1142
|
+
const _SPO = "StreamProcessorOutput";
|
|
1143
|
+
const _SPS = "StreamProcessorSettings";
|
|
1144
|
+
const _SPSFU = "StreamProcessorSettingsForUpdate";
|
|
1145
|
+
const _SPSS = "StreamProcessingStartSelector";
|
|
1146
|
+
const _SPSSt = "StreamProcessingStopSelector";
|
|
1147
|
+
const _SPT = "StartPersonTracking";
|
|
1148
|
+
const _SPTR = "StartPersonTrackingRequest";
|
|
1149
|
+
const _SPTRt = "StartPersonTrackingResponse";
|
|
1150
|
+
const _SPV = "StartProjectVersion";
|
|
1151
|
+
const _SPVA = "SourceProjectVersionArn";
|
|
1152
|
+
const _SPVR = "StartProjectVersionRequest";
|
|
1153
|
+
const _SPVRt = "StartProjectVersionResponse";
|
|
1154
|
+
const _SPVRto = "StopProjectVersionRequest";
|
|
1155
|
+
const _SPVRtop = "StopProjectVersionResponse";
|
|
1156
|
+
const _SPVt = "StopProjectVersion";
|
|
1157
|
+
const _SPt = "StreamProcessor";
|
|
1158
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
1159
|
+
const _SR = "SampleRate";
|
|
1160
|
+
const _SRC = "SourceRefContains";
|
|
1161
|
+
const _SS = "ShotSegment";
|
|
1162
|
+
const _SSD = "StartSegmentDetection";
|
|
1163
|
+
const _SSDF = "StartSegmentDetectionFilters";
|
|
1164
|
+
const _SSDFt = "StartShotDetectionFilter";
|
|
1165
|
+
const _SSDR = "StartSegmentDetectionRequest";
|
|
1166
|
+
const _SSDRt = "StartSegmentDetectionResponse";
|
|
1167
|
+
const _SSP = "StartStreamProcessor";
|
|
1168
|
+
const _SSPR = "StartStreamProcessorRequest";
|
|
1169
|
+
const _SSPRt = "StartStreamProcessorResponse";
|
|
1170
|
+
const _SSPRto = "StopStreamProcessorRequest";
|
|
1171
|
+
const _SSPRtop = "StopStreamProcessorResponse";
|
|
1172
|
+
const _SSPt = "StopStreamProcessor";
|
|
1173
|
+
const _SST = "SelectedSegmentTypes";
|
|
1174
|
+
const _SSt = "StartSelector";
|
|
1175
|
+
const _SSto = "StopSelector";
|
|
1176
|
+
const _ST = "SimilarityThreshold";
|
|
1177
|
+
const _STCDF = "StartTechnicalCueDetectionFilter";
|
|
1178
|
+
const _STD = "StartTextDetection";
|
|
1179
|
+
const _STDF = "StartTextDetectionFilters";
|
|
1180
|
+
const _STDR = "StartTextDetectionRequest";
|
|
1181
|
+
const _STDRt = "StartTextDetectionResponse";
|
|
1182
|
+
const _STI = "SegmentTypeInfo";
|
|
1183
|
+
const _STIe = "SegmentTypesInfo";
|
|
1184
|
+
const _STM = "StartTimestampMillis";
|
|
1185
|
+
const _STSMPTE = "StartTimecodeSMPTE";
|
|
1186
|
+
const _STe = "SegmentTypes";
|
|
1187
|
+
const _SU = "SearchedUser";
|
|
1188
|
+
const _SUBI = "SearchUsersByImage";
|
|
1189
|
+
const _SUBIR = "SearchUsersByImageRequest";
|
|
1190
|
+
const _SUBIRe = "SearchUsersByImageResponse";
|
|
1191
|
+
const _SUR = "SearchUsersRequest";
|
|
1192
|
+
const _SURe = "SearchUsersResponse";
|
|
1193
|
+
const _SUe = "SearchUsers";
|
|
1194
|
+
const _Se = "Settings";
|
|
1195
|
+
const _Seg = "Segments";
|
|
1196
|
+
const _Sh = "Sharpness";
|
|
1197
|
+
const _Si = "Similarity";
|
|
1198
|
+
const _St = "Status";
|
|
1199
|
+
const _Su = "Summary";
|
|
1200
|
+
const _Sun = "Sunglasses";
|
|
1201
|
+
const _T = "Top";
|
|
1202
|
+
const _TCF = "TechnicalCueFilter";
|
|
1203
|
+
const _TCS = "TechnicalCueSegment";
|
|
1204
|
+
const _TD = "TrainingData";
|
|
1205
|
+
const _TDL = "TextDetectionList";
|
|
1206
|
+
const _TDR = "TrainingDataResult";
|
|
1207
|
+
const _TDRe = "TestingDataResult";
|
|
1208
|
+
const _TDRex = "TextDetectionResult";
|
|
1209
|
+
const _TDRext = "TextDetectionResults";
|
|
1210
|
+
const _TDe = "TestingData";
|
|
1211
|
+
const _TDex = "TextDetections";
|
|
1212
|
+
const _TDext = "TextDetection";
|
|
1213
|
+
const _TE = "ThrottlingException";
|
|
1214
|
+
const _TET = "TrainingEndTimestamp";
|
|
1215
|
+
const _TEo = "TotalEntries";
|
|
1216
|
+
const _TI = "TargetImage";
|
|
1217
|
+
const _TIOC = "TargetImageOrientationCorrection";
|
|
1218
|
+
const _TK = "TagKeys";
|
|
1219
|
+
const _TL = "TotalLabels";
|
|
1220
|
+
const _TLa = "TaxonomyLevel";
|
|
1221
|
+
const _TMV = "TextModelVersion";
|
|
1222
|
+
const _TR = "TagResource";
|
|
1223
|
+
const _TRR = "TagResourceRequest";
|
|
1224
|
+
const _TRRa = "TagResourceResponse";
|
|
1225
|
+
const _Ta = "Tags";
|
|
1226
|
+
const _Ti = "Timestamp";
|
|
1227
|
+
const _Ty = "Type";
|
|
1228
|
+
const _U = "Urls";
|
|
1229
|
+
const _UC = "UserCount";
|
|
1230
|
+
const _UDE = "UpdateDatasetEntries";
|
|
1231
|
+
const _UDER = "UpdateDatasetEntriesRequest";
|
|
1232
|
+
const _UDERp = "UpdateDatasetEntriesResponse";
|
|
1233
|
+
const _UF = "UnmatchedFaces";
|
|
1234
|
+
const _UFA = "UnsuccessfulFaceAssociations";
|
|
1235
|
+
const _UFAL = "UnsuccessfulFaceAssociationList";
|
|
1236
|
+
const _UFAn = "UnsuccessfulFaceAssociation";
|
|
1237
|
+
const _UFD = "UnsuccessfulFaceDeletions";
|
|
1238
|
+
const _UFDL = "UnsuccessfulFaceDeletionsList";
|
|
1239
|
+
const _UFDLn = "UnsuccessfulFaceDisassociationList";
|
|
1240
|
+
const _UFDn = "UnsuccessfulFaceDisassociations";
|
|
1241
|
+
const _UFDns = "UnsuccessfulFaceDeletion";
|
|
1242
|
+
const _UFDnsu = "UnsuccessfulFaceDisassociation";
|
|
1243
|
+
const _UFL = "UnsearchedFacesList";
|
|
1244
|
+
const _UFn = "UnindexedFaces";
|
|
1245
|
+
const _UFni = "UnindexedFace";
|
|
1246
|
+
const _UFnr = "UnrecognizedFaces";
|
|
1247
|
+
const _UFns = "UnsearchedFaces";
|
|
1248
|
+
const _UFnse = "UnsearchedFace";
|
|
1249
|
+
const _UI = "UserId";
|
|
1250
|
+
const _UL = "UserList";
|
|
1251
|
+
const _UM = "UserMatches";
|
|
1252
|
+
const _UML = "UserMatchList";
|
|
1253
|
+
const _UMT = "UserMatchThreshold";
|
|
1254
|
+
const _UMs = "UserMatch";
|
|
1255
|
+
const _UR = "UntagResource";
|
|
1256
|
+
const _URR = "UntagResourceRequest";
|
|
1257
|
+
const _URRn = "UntagResourceResponse";
|
|
1258
|
+
const _US = "UserStatus";
|
|
1259
|
+
const _USP = "UpdateStreamProcessor";
|
|
1260
|
+
const _USPR = "UpdateStreamProcessorRequest";
|
|
1261
|
+
const _USPRp = "UpdateStreamProcessorResponse";
|
|
1262
|
+
const _Us = "Users";
|
|
1263
|
+
const _Use = "User";
|
|
1264
|
+
const _V = "Value";
|
|
1265
|
+
const _VD = "VersionDescription";
|
|
1266
|
+
const _VDa = "ValidationData";
|
|
1267
|
+
const _VM = "VideoMetadata";
|
|
1268
|
+
const _VML = "VideoMetadataList";
|
|
1269
|
+
const _VN = "VersionName";
|
|
1270
|
+
const _VNe = "VersionNames";
|
|
1271
|
+
const _VTLE = "VideoTooLargeException";
|
|
1272
|
+
const _Va = "Validation";
|
|
1273
|
+
const _Ve = "Version";
|
|
1274
|
+
const _Ver = "Versions";
|
|
1275
|
+
const _Vi = "Video";
|
|
1276
|
+
const _W = "Width";
|
|
1277
|
+
const _WF = "WordFilter";
|
|
1278
|
+
const _X = "X";
|
|
1279
|
+
const _Y = "Yaw";
|
|
1280
|
+
const _Y_ = "Y";
|
|
1281
|
+
const _a = "application/json";
|
|
1282
|
+
const _c = "client";
|
|
1283
|
+
const _e = "error";
|
|
1284
|
+
const _hE = "httpError";
|
|
1285
|
+
const _mT = "mediaType";
|
|
1286
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rekognition";
|
|
1287
|
+
const _se = "server";
|
|
1288
|
+
const n0 = "com.amazonaws.rekognition";
|
|
1289
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1290
|
+
var RekognitionServiceException$ = [-3, _s, "RekognitionServiceException", 0, [], []];
|
|
1291
|
+
_s_registry.registerError(RekognitionServiceException$, RekognitionServiceException);
|
|
1292
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1293
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1294
|
+
{ [_e]: _c },
|
|
1295
|
+
[_M, _C, _L],
|
|
1296
|
+
[0, 0, 0]
|
|
1297
|
+
];
|
|
1298
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
1299
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
1300
|
+
{ [_e]: _c },
|
|
1301
|
+
[_M, _C, _L],
|
|
1302
|
+
[0, 0, 0]
|
|
1303
|
+
];
|
|
1304
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1305
|
+
var HumanLoopQuotaExceededException$ = [-3, n0, _HLQEE,
|
|
1306
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
1307
|
+
[_RT, _QC, _SC, _M, _C, _L],
|
|
1308
|
+
[0, 0, 0, 0, 0, 0]
|
|
1309
|
+
];
|
|
1310
|
+
n0_registry.registerError(HumanLoopQuotaExceededException$, HumanLoopQuotaExceededException);
|
|
1311
|
+
var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
1312
|
+
{ [_e]: _c },
|
|
1313
|
+
[_M, _C, _L],
|
|
1314
|
+
[0, 0, 0]
|
|
1315
|
+
];
|
|
1316
|
+
n0_registry.registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
1317
|
+
var ImageTooLargeException$ = [-3, n0, _ITLE,
|
|
1318
|
+
{ [_e]: _c },
|
|
1319
|
+
[_M, _C, _L],
|
|
1320
|
+
[0, 0, 0]
|
|
1321
|
+
];
|
|
1322
|
+
n0_registry.registerError(ImageTooLargeException$, ImageTooLargeException);
|
|
1323
|
+
var InternalServerError$ = [-3, n0, _ISE,
|
|
1324
|
+
{ [_e]: _se },
|
|
1325
|
+
[_M, _C, _L],
|
|
1326
|
+
[0, 0, 0]
|
|
1327
|
+
];
|
|
1328
|
+
n0_registry.registerError(InternalServerError$, InternalServerError);
|
|
1329
|
+
var InvalidImageFormatException$ = [-3, n0, _IIFE,
|
|
1330
|
+
{ [_e]: _c },
|
|
1331
|
+
[_M, _C, _L],
|
|
1332
|
+
[0, 0, 0]
|
|
1333
|
+
];
|
|
1334
|
+
n0_registry.registerError(InvalidImageFormatException$, InvalidImageFormatException);
|
|
1335
|
+
var InvalidManifestException$ = [-3, n0, _IME,
|
|
1336
|
+
{ [_e]: _c },
|
|
1337
|
+
[_M, _C, _L],
|
|
1338
|
+
[0, 0, 0]
|
|
1339
|
+
];
|
|
1340
|
+
n0_registry.registerError(InvalidManifestException$, InvalidManifestException);
|
|
1341
|
+
var InvalidPaginationTokenException$ = [-3, n0, _IPTE,
|
|
1342
|
+
{ [_e]: _c },
|
|
1343
|
+
[_M, _C, _L],
|
|
1344
|
+
[0, 0, 0]
|
|
1345
|
+
];
|
|
1346
|
+
n0_registry.registerError(InvalidPaginationTokenException$, InvalidPaginationTokenException);
|
|
1347
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1348
|
+
{ [_e]: _c },
|
|
1349
|
+
[_M, _C, _L],
|
|
1350
|
+
[0, 0, 0]
|
|
1351
|
+
];
|
|
1352
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
1353
|
+
var InvalidPolicyRevisionIdException$ = [-3, n0, _IPRIE,
|
|
1354
|
+
{ [_e]: _c },
|
|
1355
|
+
[_M, _C, _L],
|
|
1356
|
+
[0, 0, 0]
|
|
1357
|
+
];
|
|
1358
|
+
n0_registry.registerError(InvalidPolicyRevisionIdException$, InvalidPolicyRevisionIdException);
|
|
1359
|
+
var InvalidS3ObjectException$ = [-3, n0, _ISOE,
|
|
1360
|
+
{ [_e]: _c },
|
|
1361
|
+
[_M, _C, _L],
|
|
1362
|
+
[0, 0, 0]
|
|
1363
|
+
];
|
|
1364
|
+
n0_registry.registerError(InvalidS3ObjectException$, InvalidS3ObjectException);
|
|
1365
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1366
|
+
{ [_e]: _c },
|
|
1367
|
+
[_M, _C, _L],
|
|
1368
|
+
[0, 0, 0]
|
|
1369
|
+
];
|
|
1370
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1371
|
+
var MalformedPolicyDocumentException$ = [-3, n0, _MPDE,
|
|
1372
|
+
{ [_e]: _c },
|
|
1373
|
+
[_M, _C, _L],
|
|
1374
|
+
[0, 0, 0]
|
|
1375
|
+
];
|
|
1376
|
+
n0_registry.registerError(MalformedPolicyDocumentException$, MalformedPolicyDocumentException);
|
|
1377
|
+
var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE,
|
|
1378
|
+
{ [_e]: _c },
|
|
1379
|
+
[_M, _C, _L],
|
|
1380
|
+
[0, 0, 0]
|
|
1381
|
+
];
|
|
1382
|
+
n0_registry.registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
1383
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
1384
|
+
{ [_e]: _c },
|
|
1385
|
+
[_M, _C, _L],
|
|
1386
|
+
[0, 0, 0]
|
|
1387
|
+
];
|
|
1388
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
1389
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1390
|
+
{ [_e]: _c },
|
|
1391
|
+
[_M, _C, _L],
|
|
1392
|
+
[0, 0, 0]
|
|
1393
|
+
];
|
|
1394
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
1395
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1396
|
+
{ [_e]: _c },
|
|
1397
|
+
[_M, _C, _L],
|
|
1398
|
+
[0, 0, 0]
|
|
1399
|
+
];
|
|
1400
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1401
|
+
var ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
1402
|
+
{ [_e]: _c },
|
|
1403
|
+
[_M, _C, _L],
|
|
1404
|
+
[0, 0, 0]
|
|
1405
|
+
];
|
|
1406
|
+
n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
|
|
1407
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1408
|
+
{ [_e]: _c },
|
|
1409
|
+
[_M, _C, _L],
|
|
1410
|
+
[0, 0, 0]
|
|
1411
|
+
];
|
|
1412
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1413
|
+
var SessionNotFoundException$ = [-3, n0, _SNFE,
|
|
1414
|
+
{ [_e]: _c },
|
|
1415
|
+
[_M, _C, _L],
|
|
1416
|
+
[0, 0, 0]
|
|
1417
|
+
];
|
|
1418
|
+
n0_registry.registerError(SessionNotFoundException$, SessionNotFoundException);
|
|
1419
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
1420
|
+
{ [_e]: _se },
|
|
1421
|
+
[_M, _C, _L],
|
|
1422
|
+
[0, 0, 0]
|
|
1423
|
+
];
|
|
1424
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
1425
|
+
var VideoTooLargeException$ = [-3, n0, _VTLE,
|
|
1426
|
+
{ [_e]: _c },
|
|
1427
|
+
[_M, _C, _L],
|
|
1428
|
+
[0, 0, 0]
|
|
1429
|
+
];
|
|
1430
|
+
n0_registry.registerError(VideoTooLargeException$, VideoTooLargeException);
|
|
1431
|
+
const errorTypeRegistries = [
|
|
1432
|
+
_s_registry,
|
|
1433
|
+
n0_registry,
|
|
1434
|
+
];
|
|
1435
|
+
var LivenessImageBlob = [0, n0, _LIB, 8, 21];
|
|
1436
|
+
var SynthesizedJsonHumanLoopActivationConditionsEvaluationResults = [0, n0, _SJHLACER, { [_mT]: _a }, 0];
|
|
1437
|
+
var AgeRange$ = [3, n0, _AR,
|
|
1438
|
+
0,
|
|
1439
|
+
[_Lo, _H],
|
|
1440
|
+
[1, 1]
|
|
1441
|
+
];
|
|
1442
|
+
var Asset$ = [3, n0, _A,
|
|
1443
|
+
0,
|
|
1444
|
+
[_GTM],
|
|
1445
|
+
[() => GroundTruthManifest$]
|
|
1446
|
+
];
|
|
1447
|
+
var AssociatedFace$ = [3, n0, _AF,
|
|
1448
|
+
0,
|
|
1449
|
+
[_FI],
|
|
1450
|
+
[0]
|
|
1451
|
+
];
|
|
1452
|
+
var AssociateFacesRequest$ = [3, n0, _AFR,
|
|
1453
|
+
0,
|
|
1454
|
+
[_CI, _UI, _FIa, _UMT, _CRT],
|
|
1455
|
+
[0, 0, 64 | 0, 1, [0, 4]], 3
|
|
1456
|
+
];
|
|
1457
|
+
var AssociateFacesResponse$ = [3, n0, _AFRs,
|
|
1458
|
+
0,
|
|
1459
|
+
[_AFs, _UFA, _US],
|
|
1460
|
+
[() => AssociatedFacesList, () => UnsuccessfulFaceAssociationList, 0]
|
|
1461
|
+
];
|
|
1462
|
+
var AudioMetadata$ = [3, n0, _AM,
|
|
1463
|
+
0,
|
|
1464
|
+
[_Co, _DM, _SR, _NOC],
|
|
1465
|
+
[0, 1, 1, 1]
|
|
1466
|
+
];
|
|
1467
|
+
var AuditImage$ = [3, n0, _AI,
|
|
1468
|
+
0,
|
|
1469
|
+
[_B, _SO, _BB],
|
|
1470
|
+
[[() => LivenessImageBlob, 0], () => S3Object$, () => BoundingBox$]
|
|
1471
|
+
];
|
|
1472
|
+
var Beard$ = [3, n0, _Be,
|
|
1473
|
+
0,
|
|
1474
|
+
[_V, _Con],
|
|
1475
|
+
[2, 1]
|
|
1476
|
+
];
|
|
1477
|
+
var BlackFrame$ = [3, n0, _BF,
|
|
1478
|
+
0,
|
|
1479
|
+
[_MPT, _MCP],
|
|
1480
|
+
[1, 1]
|
|
1481
|
+
];
|
|
1482
|
+
var BoundingBox$ = [3, n0, _BB,
|
|
1483
|
+
0,
|
|
1484
|
+
[_W, _He, _Le, _T],
|
|
1485
|
+
[1, 1, 1, 1]
|
|
1486
|
+
];
|
|
1487
|
+
var Celebrity$ = [3, n0, _Ce,
|
|
1488
|
+
0,
|
|
1489
|
+
[_U, _N, _I, _F, _MC, _KG],
|
|
1490
|
+
[64 | 0, 0, 0, () => ComparedFace$, 1, () => KnownGender$]
|
|
1491
|
+
];
|
|
1492
|
+
var CelebrityDetail$ = [3, n0, _CD,
|
|
1493
|
+
0,
|
|
1494
|
+
[_U, _N, _I, _Con, _BB, _F, _KG],
|
|
1495
|
+
[64 | 0, 0, 0, 1, () => BoundingBox$, () => FaceDetail$, () => KnownGender$]
|
|
1496
|
+
];
|
|
1497
|
+
var CelebrityRecognition$ = [3, n0, _CR,
|
|
1498
|
+
0,
|
|
1499
|
+
[_Ti, _Ce],
|
|
1500
|
+
[1, () => CelebrityDetail$]
|
|
1501
|
+
];
|
|
1502
|
+
var Challenge$ = [3, n0, _Ch,
|
|
1503
|
+
0,
|
|
1504
|
+
[_Ty, _Ve],
|
|
1505
|
+
[0, 0], 2
|
|
1506
|
+
];
|
|
1507
|
+
var ChallengePreference$ = [3, n0, _CP,
|
|
1508
|
+
0,
|
|
1509
|
+
[_Ty, _Ver],
|
|
1510
|
+
[0, () => Versions$], 1
|
|
1511
|
+
];
|
|
1512
|
+
var ComparedFace$ = [3, n0, _CF,
|
|
1513
|
+
0,
|
|
1514
|
+
[_BB, _Con, _La, _P, _Q, _E, _S],
|
|
1515
|
+
[() => BoundingBox$, 1, () => Landmarks, () => Pose$, () => ImageQuality$, () => Emotions, () => Smile$]
|
|
1516
|
+
];
|
|
1517
|
+
var ComparedSourceImageFace$ = [3, n0, _CSIF,
|
|
1518
|
+
0,
|
|
1519
|
+
[_BB, _Con],
|
|
1520
|
+
[() => BoundingBox$, 1]
|
|
1521
|
+
];
|
|
1522
|
+
var CompareFacesMatch$ = [3, n0, _CFM,
|
|
1523
|
+
0,
|
|
1524
|
+
[_Si, _F],
|
|
1525
|
+
[1, () => ComparedFace$]
|
|
1526
|
+
];
|
|
1527
|
+
var CompareFacesRequest$ = [3, n0, _CFR,
|
|
1528
|
+
0,
|
|
1529
|
+
[_SI, _TI, _ST, _QF],
|
|
1530
|
+
[() => Image$, () => Image$, 1, 0], 2
|
|
1531
|
+
];
|
|
1532
|
+
var CompareFacesResponse$ = [3, n0, _CFRo,
|
|
1533
|
+
0,
|
|
1534
|
+
[_SIF, _FM, _UF, _SIOC, _TIOC],
|
|
1535
|
+
[() => ComparedSourceImageFace$, () => CompareFacesMatchList, () => CompareFacesUnmatchList, 0, 0]
|
|
1536
|
+
];
|
|
1537
|
+
var ConnectedHomeSettings$ = [3, n0, _CHS,
|
|
1538
|
+
0,
|
|
1539
|
+
[_Lab, _MCi],
|
|
1540
|
+
[64 | 0, 1], 1
|
|
1541
|
+
];
|
|
1542
|
+
var ConnectedHomeSettingsForUpdate$ = [3, n0, _CHSFU,
|
|
1543
|
+
0,
|
|
1544
|
+
[_Lab, _MCi],
|
|
1545
|
+
[64 | 0, 1]
|
|
1546
|
+
];
|
|
1547
|
+
var ContentModerationDetection$ = [3, n0, _CMD,
|
|
1548
|
+
0,
|
|
1549
|
+
[_Ti, _ML, _STM, _ETM, _DM, _CT],
|
|
1550
|
+
[1, () => ModerationLabel$, 1, 1, 1, () => ContentTypes]
|
|
1551
|
+
];
|
|
1552
|
+
var ContentType$ = [3, n0, _CTo,
|
|
1553
|
+
0,
|
|
1554
|
+
[_Con, _N],
|
|
1555
|
+
[1, 0]
|
|
1556
|
+
];
|
|
1557
|
+
var CopyProjectVersionRequest$ = [3, n0, _CPVR,
|
|
1558
|
+
0,
|
|
1559
|
+
[_SPA, _SPVA, _DPA, _VN, _OC, _Ta, _KKI],
|
|
1560
|
+
[0, 0, 0, 0, () => OutputConfig$, 128 | 0, 0], 5
|
|
1561
|
+
];
|
|
1562
|
+
var CopyProjectVersionResponse$ = [3, n0, _CPVRo,
|
|
1563
|
+
0,
|
|
1564
|
+
[_PVA],
|
|
1565
|
+
[0]
|
|
1566
|
+
];
|
|
1567
|
+
var CoversBodyPart$ = [3, n0, _CBP,
|
|
1568
|
+
0,
|
|
1569
|
+
[_Con, _V],
|
|
1570
|
+
[1, 2]
|
|
1571
|
+
];
|
|
1572
|
+
var CreateCollectionRequest$ = [3, n0, _CCR,
|
|
1573
|
+
0,
|
|
1574
|
+
[_CI, _Ta],
|
|
1575
|
+
[0, 128 | 0], 1
|
|
1576
|
+
];
|
|
1577
|
+
var CreateCollectionResponse$ = [3, n0, _CCRr,
|
|
1578
|
+
0,
|
|
1579
|
+
[_SCt, _CA, _FMV],
|
|
1580
|
+
[1, 0, 0]
|
|
1581
|
+
];
|
|
1582
|
+
var CreateDatasetRequest$ = [3, n0, _CDR,
|
|
1583
|
+
0,
|
|
1584
|
+
[_DT, _PA, _DS, _Ta],
|
|
1585
|
+
[0, 0, () => DatasetSource$, 128 | 0], 2
|
|
1586
|
+
];
|
|
1587
|
+
var CreateDatasetResponse$ = [3, n0, _CDRr,
|
|
1588
|
+
0,
|
|
1589
|
+
[_DA],
|
|
1590
|
+
[0]
|
|
1591
|
+
];
|
|
1592
|
+
var CreateFaceLivenessSessionRequest$ = [3, n0, _CFLSR,
|
|
1593
|
+
0,
|
|
1594
|
+
[_KKI, _Se, _CRT],
|
|
1595
|
+
[0, () => CreateFaceLivenessSessionRequestSettings$, 0]
|
|
1596
|
+
];
|
|
1597
|
+
var CreateFaceLivenessSessionRequestSettings$ = [3, n0, _CFLSRS,
|
|
1598
|
+
0,
|
|
1599
|
+
[_OC, _AIL, _CPh],
|
|
1600
|
+
[() => LivenessOutputConfig$, 1, () => ChallengePreferences]
|
|
1601
|
+
];
|
|
1602
|
+
var CreateFaceLivenessSessionResponse$ = [3, n0, _CFLSRr,
|
|
1603
|
+
0,
|
|
1604
|
+
[_SIe],
|
|
1605
|
+
[0], 1
|
|
1606
|
+
];
|
|
1607
|
+
var CreateProjectRequest$ = [3, n0, _CPR,
|
|
1608
|
+
0,
|
|
1609
|
+
[_PN, _Fe, _AU, _Ta],
|
|
1610
|
+
[0, 0, 0, 128 | 0], 1
|
|
1611
|
+
];
|
|
1612
|
+
var CreateProjectResponse$ = [3, n0, _CPRr,
|
|
1613
|
+
0,
|
|
1614
|
+
[_PA],
|
|
1615
|
+
[0]
|
|
1616
|
+
];
|
|
1617
|
+
var CreateProjectVersionRequest$ = [3, n0, _CPVRr,
|
|
1618
|
+
0,
|
|
1619
|
+
[_PA, _VN, _OC, _TD, _TDe, _Ta, _KKI, _VD, _FC],
|
|
1620
|
+
[0, 0, () => OutputConfig$, () => TrainingData$, () => TestingData$, 128 | 0, 0, 0, () => CustomizationFeatureConfig$], 3
|
|
1621
|
+
];
|
|
1622
|
+
var CreateProjectVersionResponse$ = [3, n0, _CPVRre,
|
|
1623
|
+
0,
|
|
1624
|
+
[_PVA],
|
|
1625
|
+
[0]
|
|
1626
|
+
];
|
|
1627
|
+
var CreateStreamProcessorRequest$ = [3, n0, _CSPR,
|
|
1628
|
+
0,
|
|
1629
|
+
[_In, _O, _N, _Se, _RA, _Ta, _NC, _KKI, _ROI, _DSP],
|
|
1630
|
+
[() => StreamProcessorInput$, () => StreamProcessorOutput$, 0, () => StreamProcessorSettings$, 0, 128 | 0, () => StreamProcessorNotificationChannel$, 0, () => RegionsOfInterest, () => StreamProcessorDataSharingPreference$], 5
|
|
1631
|
+
];
|
|
1632
|
+
var CreateStreamProcessorResponse$ = [3, n0, _CSPRr,
|
|
1633
|
+
0,
|
|
1634
|
+
[_SPAt],
|
|
1635
|
+
[0]
|
|
1636
|
+
];
|
|
1637
|
+
var CreateUserRequest$ = [3, n0, _CUR,
|
|
1638
|
+
0,
|
|
1639
|
+
[_CI, _UI, _CRT],
|
|
1640
|
+
[0, 0, [0, 4]], 2
|
|
1641
|
+
];
|
|
1642
|
+
var CreateUserResponse$ = [3, n0, _CURr,
|
|
1643
|
+
0,
|
|
1644
|
+
[],
|
|
1645
|
+
[]
|
|
1646
|
+
];
|
|
1647
|
+
var CustomizationFeatureConfig$ = [3, n0, _CFC,
|
|
1648
|
+
0,
|
|
1649
|
+
[_CM],
|
|
1650
|
+
[() => CustomizationFeatureContentModerationConfig$]
|
|
1651
|
+
];
|
|
1652
|
+
var CustomizationFeatureContentModerationConfig$ = [3, n0, _CFCMC,
|
|
1653
|
+
0,
|
|
1654
|
+
[_CTon],
|
|
1655
|
+
[1]
|
|
1656
|
+
];
|
|
1657
|
+
var CustomLabel$ = [3, n0, _CL,
|
|
1658
|
+
0,
|
|
1659
|
+
[_N, _Con, _G],
|
|
1660
|
+
[0, 1, () => Geometry$]
|
|
1661
|
+
];
|
|
1662
|
+
var DatasetChanges$ = [3, n0, _DC,
|
|
1663
|
+
0,
|
|
1664
|
+
[_GT],
|
|
1665
|
+
[21], 1
|
|
1666
|
+
];
|
|
1667
|
+
var DatasetDescription$ = [3, n0, _DD,
|
|
1668
|
+
0,
|
|
1669
|
+
[_CTr, _LUT, _St, _SM, _SMC, _DSa],
|
|
1670
|
+
[4, 4, 0, 0, 0, () => DatasetStats$]
|
|
1671
|
+
];
|
|
1672
|
+
var DatasetLabelDescription$ = [3, n0, _DLD,
|
|
1673
|
+
0,
|
|
1674
|
+
[_LN, _LS],
|
|
1675
|
+
[0, () => DatasetLabelStats$]
|
|
1676
|
+
];
|
|
1677
|
+
var DatasetLabelStats$ = [3, n0, _DLS,
|
|
1678
|
+
0,
|
|
1679
|
+
[_EC, _BBC],
|
|
1680
|
+
[1, 1]
|
|
1681
|
+
];
|
|
1682
|
+
var DatasetMetadata$ = [3, n0, _DMa,
|
|
1683
|
+
0,
|
|
1684
|
+
[_CTr, _DT, _DA, _St, _SM, _SMC],
|
|
1685
|
+
[4, 0, 0, 0, 0, 0]
|
|
1686
|
+
];
|
|
1687
|
+
var DatasetSource$ = [3, n0, _DS,
|
|
1688
|
+
0,
|
|
1689
|
+
[_GTM, _DA],
|
|
1690
|
+
[() => GroundTruthManifest$, 0]
|
|
1691
|
+
];
|
|
1692
|
+
var DatasetStats$ = [3, n0, _DSa,
|
|
1693
|
+
0,
|
|
1694
|
+
[_LE, _TEo, _TL, _EE],
|
|
1695
|
+
[1, 1, 1, 1]
|
|
1696
|
+
];
|
|
1697
|
+
var DeleteCollectionRequest$ = [3, n0, _DCR,
|
|
1698
|
+
0,
|
|
1699
|
+
[_CI],
|
|
1700
|
+
[0], 1
|
|
1701
|
+
];
|
|
1702
|
+
var DeleteCollectionResponse$ = [3, n0, _DCRe,
|
|
1703
|
+
0,
|
|
1704
|
+
[_SCt],
|
|
1705
|
+
[1]
|
|
1706
|
+
];
|
|
1707
|
+
var DeleteDatasetRequest$ = [3, n0, _DDR,
|
|
1708
|
+
0,
|
|
1709
|
+
[_DA],
|
|
1710
|
+
[0], 1
|
|
1711
|
+
];
|
|
1712
|
+
var DeleteDatasetResponse$ = [3, n0, _DDRe,
|
|
1713
|
+
0,
|
|
1714
|
+
[],
|
|
1715
|
+
[]
|
|
1716
|
+
];
|
|
1717
|
+
var DeleteFacesRequest$ = [3, n0, _DFR,
|
|
1718
|
+
0,
|
|
1719
|
+
[_CI, _FIa],
|
|
1720
|
+
[0, 64 | 0], 2
|
|
1721
|
+
];
|
|
1722
|
+
var DeleteFacesResponse$ = [3, n0, _DFRe,
|
|
1723
|
+
0,
|
|
1724
|
+
[_DF, _UFD],
|
|
1725
|
+
[64 | 0, () => UnsuccessfulFaceDeletionsList]
|
|
1726
|
+
];
|
|
1727
|
+
var DeleteProjectPolicyRequest$ = [3, n0, _DPPR,
|
|
1728
|
+
0,
|
|
1729
|
+
[_PA, _PNo, _PRI],
|
|
1730
|
+
[0, 0, 0], 2
|
|
1731
|
+
];
|
|
1732
|
+
var DeleteProjectPolicyResponse$ = [3, n0, _DPPRe,
|
|
1733
|
+
0,
|
|
1734
|
+
[],
|
|
1735
|
+
[]
|
|
1736
|
+
];
|
|
1737
|
+
var DeleteProjectRequest$ = [3, n0, _DPR,
|
|
1738
|
+
0,
|
|
1739
|
+
[_PA],
|
|
1740
|
+
[0], 1
|
|
1741
|
+
];
|
|
1742
|
+
var DeleteProjectResponse$ = [3, n0, _DPRe,
|
|
1743
|
+
0,
|
|
1744
|
+
[_St],
|
|
1745
|
+
[0]
|
|
1746
|
+
];
|
|
1747
|
+
var DeleteProjectVersionRequest$ = [3, n0, _DPVR,
|
|
1748
|
+
0,
|
|
1749
|
+
[_PVA],
|
|
1750
|
+
[0], 1
|
|
1751
|
+
];
|
|
1752
|
+
var DeleteProjectVersionResponse$ = [3, n0, _DPVRe,
|
|
1753
|
+
0,
|
|
1754
|
+
[_St],
|
|
1755
|
+
[0]
|
|
1756
|
+
];
|
|
1757
|
+
var DeleteStreamProcessorRequest$ = [3, n0, _DSPR,
|
|
1758
|
+
0,
|
|
1759
|
+
[_N],
|
|
1760
|
+
[0], 1
|
|
1761
|
+
];
|
|
1762
|
+
var DeleteStreamProcessorResponse$ = [3, n0, _DSPRe,
|
|
1763
|
+
0,
|
|
1764
|
+
[],
|
|
1765
|
+
[]
|
|
1766
|
+
];
|
|
1767
|
+
var DeleteUserRequest$ = [3, n0, _DUR,
|
|
1768
|
+
0,
|
|
1769
|
+
[_CI, _UI, _CRT],
|
|
1770
|
+
[0, 0, [0, 4]], 2
|
|
1771
|
+
];
|
|
1772
|
+
var DeleteUserResponse$ = [3, n0, _DURe,
|
|
1773
|
+
0,
|
|
1774
|
+
[],
|
|
1775
|
+
[]
|
|
1776
|
+
];
|
|
1777
|
+
var DescribeCollectionRequest$ = [3, n0, _DCRes,
|
|
1778
|
+
0,
|
|
1779
|
+
[_CI],
|
|
1780
|
+
[0], 1
|
|
1781
|
+
];
|
|
1782
|
+
var DescribeCollectionResponse$ = [3, n0, _DCResc,
|
|
1783
|
+
0,
|
|
1784
|
+
[_FCa, _FMV, _CARN, _CTr, _UC],
|
|
1785
|
+
[1, 0, 0, 4, 1]
|
|
1786
|
+
];
|
|
1787
|
+
var DescribeDatasetRequest$ = [3, n0, _DDRes,
|
|
1788
|
+
0,
|
|
1789
|
+
[_DA],
|
|
1790
|
+
[0], 1
|
|
1791
|
+
];
|
|
1792
|
+
var DescribeDatasetResponse$ = [3, n0, _DDResc,
|
|
1793
|
+
0,
|
|
1794
|
+
[_DD],
|
|
1795
|
+
[() => DatasetDescription$]
|
|
1796
|
+
];
|
|
1797
|
+
var DescribeProjectsRequest$ = [3, n0, _DPRes,
|
|
1798
|
+
0,
|
|
1799
|
+
[_NT, _MR, _PNr, _Fea],
|
|
1800
|
+
[0, 1, 64 | 0, 64 | 0]
|
|
1801
|
+
];
|
|
1802
|
+
var DescribeProjectsResponse$ = [3, n0, _DPResc,
|
|
1803
|
+
0,
|
|
1804
|
+
[_PD, _NT],
|
|
1805
|
+
[() => ProjectDescriptions, 0]
|
|
1806
|
+
];
|
|
1807
|
+
var DescribeProjectVersionsRequest$ = [3, n0, _DPVRes,
|
|
1808
|
+
0,
|
|
1809
|
+
[_PA, _VNe, _NT, _MR],
|
|
1810
|
+
[0, 64 | 0, 0, 1], 1
|
|
1811
|
+
];
|
|
1812
|
+
var DescribeProjectVersionsResponse$ = [3, n0, _DPVResc,
|
|
1813
|
+
0,
|
|
1814
|
+
[_PVD, _NT],
|
|
1815
|
+
[() => ProjectVersionDescriptions, 0]
|
|
1816
|
+
];
|
|
1817
|
+
var DescribeStreamProcessorRequest$ = [3, n0, _DSPRes,
|
|
1818
|
+
0,
|
|
1819
|
+
[_N],
|
|
1820
|
+
[0], 1
|
|
1821
|
+
];
|
|
1822
|
+
var DescribeStreamProcessorResponse$ = [3, n0, _DSPResc,
|
|
1823
|
+
0,
|
|
1824
|
+
[_N, _SPAt, _St, _SM, _CTr, _LUTa, _In, _O, _RA, _Se, _NC, _KKI, _ROI, _DSP],
|
|
1825
|
+
[0, 0, 0, 0, 4, 4, () => StreamProcessorInput$, () => StreamProcessorOutput$, 0, () => StreamProcessorSettings$, () => StreamProcessorNotificationChannel$, 0, () => RegionsOfInterest, () => StreamProcessorDataSharingPreference$]
|
|
1826
|
+
];
|
|
1827
|
+
var DetectCustomLabelsRequest$ = [3, n0, _DCLR,
|
|
1828
|
+
0,
|
|
1829
|
+
[_PVA, _Im, _MR, _MCi],
|
|
1830
|
+
[0, () => Image$, 1, 1], 2
|
|
1831
|
+
];
|
|
1832
|
+
var DetectCustomLabelsResponse$ = [3, n0, _DCLRe,
|
|
1833
|
+
0,
|
|
1834
|
+
[_CLu],
|
|
1835
|
+
[() => CustomLabels]
|
|
1836
|
+
];
|
|
1837
|
+
var DetectFacesRequest$ = [3, n0, _DFRet,
|
|
1838
|
+
0,
|
|
1839
|
+
[_Im, _At],
|
|
1840
|
+
[() => Image$, 64 | 0], 1
|
|
1841
|
+
];
|
|
1842
|
+
var DetectFacesResponse$ = [3, n0, _DFRete,
|
|
1843
|
+
0,
|
|
1844
|
+
[_FD, _OCr],
|
|
1845
|
+
[() => FaceDetailList, 0]
|
|
1846
|
+
];
|
|
1847
|
+
var DetectionFilter$ = [3, n0, _DFe,
|
|
1848
|
+
0,
|
|
1849
|
+
[_MCi, _MBBH, _MBBW],
|
|
1850
|
+
[1, 1, 1]
|
|
1851
|
+
];
|
|
1852
|
+
var DetectLabelsImageBackground$ = [3, n0, _DLIB,
|
|
1853
|
+
0,
|
|
1854
|
+
[_Q, _DCo],
|
|
1855
|
+
[() => DetectLabelsImageQuality$, () => DominantColors]
|
|
1856
|
+
];
|
|
1857
|
+
var DetectLabelsImageForeground$ = [3, n0, _DLIF,
|
|
1858
|
+
0,
|
|
1859
|
+
[_Q, _DCo],
|
|
1860
|
+
[() => DetectLabelsImageQuality$, () => DominantColors]
|
|
1861
|
+
];
|
|
1862
|
+
var DetectLabelsImageProperties$ = [3, n0, _DLIP,
|
|
1863
|
+
0,
|
|
1864
|
+
[_Q, _DCo, _Fo, _Ba],
|
|
1865
|
+
[() => DetectLabelsImageQuality$, () => DominantColors, () => DetectLabelsImageForeground$, () => DetectLabelsImageBackground$]
|
|
1866
|
+
];
|
|
1867
|
+
var DetectLabelsImagePropertiesSettings$ = [3, n0, _DLIPS,
|
|
1868
|
+
0,
|
|
1869
|
+
[_MDC],
|
|
1870
|
+
[1]
|
|
1871
|
+
];
|
|
1872
|
+
var DetectLabelsImageQuality$ = [3, n0, _DLIQ,
|
|
1873
|
+
0,
|
|
1874
|
+
[_Br, _Sh, _Cont],
|
|
1875
|
+
[1, 1, 1]
|
|
1876
|
+
];
|
|
1877
|
+
var DetectLabelsRequest$ = [3, n0, _DLR,
|
|
1878
|
+
0,
|
|
1879
|
+
[_Im, _MLa, _MCi, _Fea, _Se],
|
|
1880
|
+
[() => Image$, 1, 1, 64 | 0, () => DetectLabelsSettings$], 1
|
|
1881
|
+
];
|
|
1882
|
+
var DetectLabelsResponse$ = [3, n0, _DLRe,
|
|
1883
|
+
0,
|
|
1884
|
+
[_Lab, _OCr, _LMV, _IP],
|
|
1885
|
+
[() => Labels, 0, 0, () => DetectLabelsImageProperties$]
|
|
1886
|
+
];
|
|
1887
|
+
var DetectLabelsSettings$ = [3, n0, _DLSe,
|
|
1888
|
+
0,
|
|
1889
|
+
[_GL, _IP],
|
|
1890
|
+
[() => GeneralLabelsSettings$, () => DetectLabelsImagePropertiesSettings$]
|
|
1891
|
+
];
|
|
1892
|
+
var DetectModerationLabelsRequest$ = [3, n0, _DMLR,
|
|
1893
|
+
0,
|
|
1894
|
+
[_Im, _MCi, _HLC, _PV],
|
|
1895
|
+
[() => Image$, 1, () => HumanLoopConfig$, 0], 1
|
|
1896
|
+
];
|
|
1897
|
+
var DetectModerationLabelsResponse$ = [3, n0, _DMLRe,
|
|
1898
|
+
0,
|
|
1899
|
+
[_MLo, _MMV, _HLAO, _PV, _CT],
|
|
1900
|
+
[() => ModerationLabels, 0, [() => HumanLoopActivationOutput$, 0], 0, () => ContentTypes]
|
|
1901
|
+
];
|
|
1902
|
+
var DetectProtectiveEquipmentRequest$ = [3, n0, _DPER,
|
|
1903
|
+
0,
|
|
1904
|
+
[_Im, _SA],
|
|
1905
|
+
[() => Image$, () => ProtectiveEquipmentSummarizationAttributes$], 1
|
|
1906
|
+
];
|
|
1907
|
+
var DetectProtectiveEquipmentResponse$ = [3, n0, _DPERe,
|
|
1908
|
+
0,
|
|
1909
|
+
[_PEMV, _Pe, _Su],
|
|
1910
|
+
[0, () => ProtectiveEquipmentPersons, () => ProtectiveEquipmentSummary$]
|
|
1911
|
+
];
|
|
1912
|
+
var DetectTextFilters$ = [3, n0, _DTF,
|
|
1913
|
+
0,
|
|
1914
|
+
[_WF, _ROI],
|
|
1915
|
+
[() => DetectionFilter$, () => RegionsOfInterest]
|
|
1916
|
+
];
|
|
1917
|
+
var DetectTextRequest$ = [3, n0, _DTR,
|
|
1918
|
+
0,
|
|
1919
|
+
[_Im, _Fi],
|
|
1920
|
+
[() => Image$, () => DetectTextFilters$], 1
|
|
1921
|
+
];
|
|
1922
|
+
var DetectTextResponse$ = [3, n0, _DTRe,
|
|
1923
|
+
0,
|
|
1924
|
+
[_TDex, _TMV],
|
|
1925
|
+
[() => TextDetectionList, 0]
|
|
1926
|
+
];
|
|
1927
|
+
var DisassociatedFace$ = [3, n0, _DFi,
|
|
1928
|
+
0,
|
|
1929
|
+
[_FI],
|
|
1930
|
+
[0]
|
|
1931
|
+
];
|
|
1932
|
+
var DisassociateFacesRequest$ = [3, n0, _DFRi,
|
|
1933
|
+
0,
|
|
1934
|
+
[_CI, _UI, _FIa, _CRT],
|
|
1935
|
+
[0, 0, 64 | 0, [0, 4]], 3
|
|
1936
|
+
];
|
|
1937
|
+
var DisassociateFacesResponse$ = [3, n0, _DFRis,
|
|
1938
|
+
0,
|
|
1939
|
+
[_DFis, _UFDn, _US],
|
|
1940
|
+
[() => DisassociatedFacesList, () => UnsuccessfulFaceDisassociationList, 0]
|
|
1941
|
+
];
|
|
1942
|
+
var DistributeDataset$ = [3, n0, _DDi,
|
|
1943
|
+
0,
|
|
1944
|
+
[_Ar],
|
|
1945
|
+
[0], 1
|
|
1946
|
+
];
|
|
1947
|
+
var DistributeDatasetEntriesRequest$ = [3, n0, _DDER,
|
|
1948
|
+
0,
|
|
1949
|
+
[_D],
|
|
1950
|
+
[() => DistributeDatasetMetadataList], 1
|
|
1951
|
+
];
|
|
1952
|
+
var DistributeDatasetEntriesResponse$ = [3, n0, _DDERi,
|
|
1953
|
+
0,
|
|
1954
|
+
[],
|
|
1955
|
+
[]
|
|
1956
|
+
];
|
|
1957
|
+
var DominantColor$ = [3, n0, _DCom,
|
|
1958
|
+
0,
|
|
1959
|
+
[_R, _Bl, _Gr, _HC, _CSSC, _SCi, _PP],
|
|
1960
|
+
[1, 1, 1, 0, 0, 0, 1]
|
|
1961
|
+
];
|
|
1962
|
+
var Emotion$ = [3, n0, _Em,
|
|
1963
|
+
0,
|
|
1964
|
+
[_Ty, _Con],
|
|
1965
|
+
[0, 1]
|
|
1966
|
+
];
|
|
1967
|
+
var EquipmentDetection$ = [3, n0, _ED,
|
|
1968
|
+
0,
|
|
1969
|
+
[_BB, _Con, _Ty, _CBP],
|
|
1970
|
+
[() => BoundingBox$, 1, 0, () => CoversBodyPart$]
|
|
1971
|
+
];
|
|
1972
|
+
var EvaluationResult$ = [3, n0, _ER,
|
|
1973
|
+
0,
|
|
1974
|
+
[_FS, _Su],
|
|
1975
|
+
[1, () => Summary$]
|
|
1976
|
+
];
|
|
1977
|
+
var EyeDirection$ = [3, n0, _EDy,
|
|
1978
|
+
0,
|
|
1979
|
+
[_Y, _Pi, _Con],
|
|
1980
|
+
[1, 1, 1]
|
|
1981
|
+
];
|
|
1982
|
+
var Eyeglasses$ = [3, n0, _Ey,
|
|
1983
|
+
0,
|
|
1984
|
+
[_V, _Con],
|
|
1985
|
+
[2, 1]
|
|
1986
|
+
];
|
|
1987
|
+
var EyeOpen$ = [3, n0, _EO,
|
|
1988
|
+
0,
|
|
1989
|
+
[_V, _Con],
|
|
1990
|
+
[2, 1]
|
|
1991
|
+
];
|
|
1992
|
+
var Face$ = [3, n0, _F,
|
|
1993
|
+
0,
|
|
1994
|
+
[_FI, _BB, _II, _EII, _Con, _IFMV, _UI],
|
|
1995
|
+
[0, () => BoundingBox$, 0, 0, 1, 0, 0]
|
|
1996
|
+
];
|
|
1997
|
+
var FaceDetail$ = [3, n0, _FDa,
|
|
1998
|
+
0,
|
|
1999
|
+
[_BB, _AR, _S, _Ey, _Sun, _Ge, _Be, _Mu, _EOy, _MO, _E, _La, _P, _Q, _Con, _FO, _EDy],
|
|
2000
|
+
[() => BoundingBox$, () => AgeRange$, () => Smile$, () => Eyeglasses$, () => Sunglasses$, () => Gender$, () => Beard$, () => Mustache$, () => EyeOpen$, () => MouthOpen$, () => Emotions, () => Landmarks, () => Pose$, () => ImageQuality$, 1, () => FaceOccluded$, () => EyeDirection$]
|
|
2001
|
+
];
|
|
2002
|
+
var FaceDetection$ = [3, n0, _FDac,
|
|
2003
|
+
0,
|
|
2004
|
+
[_Ti, _F],
|
|
2005
|
+
[1, () => FaceDetail$]
|
|
2006
|
+
];
|
|
2007
|
+
var FaceMatch$ = [3, n0, _FMa,
|
|
2008
|
+
0,
|
|
2009
|
+
[_Si, _F],
|
|
2010
|
+
[1, () => Face$]
|
|
2011
|
+
];
|
|
2012
|
+
var FaceOccluded$ = [3, n0, _FO,
|
|
2013
|
+
0,
|
|
2014
|
+
[_V, _Con],
|
|
2015
|
+
[2, 1]
|
|
2016
|
+
];
|
|
2017
|
+
var FaceRecord$ = [3, n0, _FR,
|
|
2018
|
+
0,
|
|
2019
|
+
[_F, _FDa],
|
|
2020
|
+
[() => Face$, () => FaceDetail$]
|
|
2021
|
+
];
|
|
2022
|
+
var FaceSearchSettings$ = [3, n0, _FSS,
|
|
2023
|
+
0,
|
|
2024
|
+
[_CI, _FMT],
|
|
2025
|
+
[0, 1]
|
|
2026
|
+
];
|
|
2027
|
+
var Gender$ = [3, n0, _Ge,
|
|
2028
|
+
0,
|
|
2029
|
+
[_V, _Con],
|
|
2030
|
+
[0, 1]
|
|
2031
|
+
];
|
|
2032
|
+
var GeneralLabelsSettings$ = [3, n0, _GLS,
|
|
2033
|
+
0,
|
|
2034
|
+
[_LIF, _LEF, _LCIF, _LCEF],
|
|
2035
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
2036
|
+
];
|
|
2037
|
+
var Geometry$ = [3, n0, _G,
|
|
2038
|
+
0,
|
|
2039
|
+
[_BB, _Po],
|
|
2040
|
+
[() => BoundingBox$, () => Polygon]
|
|
2041
|
+
];
|
|
2042
|
+
var GetCelebrityInfoRequest$ = [3, n0, _GCIR,
|
|
2043
|
+
0,
|
|
2044
|
+
[_I],
|
|
2045
|
+
[0], 1
|
|
2046
|
+
];
|
|
2047
|
+
var GetCelebrityInfoResponse$ = [3, n0, _GCIRe,
|
|
2048
|
+
0,
|
|
2049
|
+
[_U, _N, _KG],
|
|
2050
|
+
[64 | 0, 0, () => KnownGender$]
|
|
2051
|
+
];
|
|
2052
|
+
var GetCelebrityRecognitionRequest$ = [3, n0, _GCRR,
|
|
2053
|
+
0,
|
|
2054
|
+
[_JI, _MR, _NT, _SB],
|
|
2055
|
+
[0, 1, 0, 0], 1
|
|
2056
|
+
];
|
|
2057
|
+
var GetCelebrityRecognitionResponse$ = [3, n0, _GCRRe,
|
|
2058
|
+
0,
|
|
2059
|
+
[_JS, _SM, _VM, _NT, _Cel, _JI, _Vi, _JT],
|
|
2060
|
+
[0, 0, () => VideoMetadata$, 0, () => CelebrityRecognitions, 0, () => Video$, 0]
|
|
2061
|
+
];
|
|
2062
|
+
var GetContentModerationRequest$ = [3, n0, _GCMR,
|
|
2063
|
+
0,
|
|
2064
|
+
[_JI, _MR, _NT, _SB, _AB],
|
|
2065
|
+
[0, 1, 0, 0, 0], 1
|
|
2066
|
+
];
|
|
2067
|
+
var GetContentModerationRequestMetadata$ = [3, n0, _GCMRM,
|
|
2068
|
+
0,
|
|
2069
|
+
[_SB, _AB],
|
|
2070
|
+
[0, 0]
|
|
2071
|
+
];
|
|
2072
|
+
var GetContentModerationResponse$ = [3, n0, _GCMRe,
|
|
2073
|
+
0,
|
|
2074
|
+
[_JS, _SM, _VM, _MLo, _NT, _MMV, _JI, _Vi, _JT, _GRM],
|
|
2075
|
+
[0, 0, () => VideoMetadata$, () => ContentModerationDetections, 0, 0, 0, () => Video$, 0, () => GetContentModerationRequestMetadata$]
|
|
2076
|
+
];
|
|
2077
|
+
var GetFaceDetectionRequest$ = [3, n0, _GFDR,
|
|
2078
|
+
0,
|
|
2079
|
+
[_JI, _MR, _NT],
|
|
2080
|
+
[0, 1, 0], 1
|
|
2081
|
+
];
|
|
2082
|
+
var GetFaceDetectionResponse$ = [3, n0, _GFDRe,
|
|
2083
|
+
0,
|
|
2084
|
+
[_JS, _SM, _VM, _NT, _Fa, _JI, _Vi, _JT],
|
|
2085
|
+
[0, 0, () => VideoMetadata$, 0, () => FaceDetections, 0, () => Video$, 0]
|
|
2086
|
+
];
|
|
2087
|
+
var GetFaceLivenessSessionResultsRequest$ = [3, n0, _GFLSRR,
|
|
2088
|
+
0,
|
|
2089
|
+
[_SIe],
|
|
2090
|
+
[0], 1
|
|
2091
|
+
];
|
|
2092
|
+
var GetFaceLivenessSessionResultsResponse$ = [3, n0, _GFLSRRe,
|
|
2093
|
+
0,
|
|
2094
|
+
[_SIe, _St, _Con, _RI, _AIu, _Ch],
|
|
2095
|
+
[0, 0, 1, [() => AuditImage$, 0], [() => AuditImages, 0], () => Challenge$], 2
|
|
2096
|
+
];
|
|
2097
|
+
var GetFaceSearchRequest$ = [3, n0, _GFSR,
|
|
2098
|
+
0,
|
|
2099
|
+
[_JI, _MR, _NT, _SB],
|
|
2100
|
+
[0, 1, 0, 0], 1
|
|
2101
|
+
];
|
|
2102
|
+
var GetFaceSearchResponse$ = [3, n0, _GFSRe,
|
|
2103
|
+
0,
|
|
2104
|
+
[_JS, _SM, _NT, _VM, _Pe, _JI, _Vi, _JT],
|
|
2105
|
+
[0, 0, 0, () => VideoMetadata$, () => PersonMatches, 0, () => Video$, 0]
|
|
2106
|
+
];
|
|
2107
|
+
var GetLabelDetectionRequest$ = [3, n0, _GLDR,
|
|
2108
|
+
0,
|
|
2109
|
+
[_JI, _MR, _NT, _SB, _AB],
|
|
2110
|
+
[0, 1, 0, 0, 0], 1
|
|
2111
|
+
];
|
|
2112
|
+
var GetLabelDetectionRequestMetadata$ = [3, n0, _GLDRM,
|
|
2113
|
+
0,
|
|
2114
|
+
[_SB, _AB],
|
|
2115
|
+
[0, 0]
|
|
2116
|
+
];
|
|
2117
|
+
var GetLabelDetectionResponse$ = [3, n0, _GLDRe,
|
|
2118
|
+
0,
|
|
2119
|
+
[_JS, _SM, _VM, _NT, _Lab, _LMV, _JI, _Vi, _JT, _GRM],
|
|
2120
|
+
[0, 0, () => VideoMetadata$, 0, () => LabelDetections, 0, 0, () => Video$, 0, () => GetLabelDetectionRequestMetadata$]
|
|
2121
|
+
];
|
|
2122
|
+
var GetMediaAnalysisJobRequest$ = [3, n0, _GMAJR,
|
|
2123
|
+
0,
|
|
2124
|
+
[_JI],
|
|
2125
|
+
[0], 1
|
|
2126
|
+
];
|
|
2127
|
+
var GetMediaAnalysisJobResponse$ = [3, n0, _GMAJRe,
|
|
2128
|
+
0,
|
|
2129
|
+
[_JI, _OCp, _St, _CTr, _In, _OC, _JN, _FDai, _CTom, _KKI, _Re, _MS],
|
|
2130
|
+
[0, () => MediaAnalysisOperationsConfig$, 0, 4, () => MediaAnalysisInput$, () => MediaAnalysisOutputConfig$, 0, () => MediaAnalysisJobFailureDetails$, 4, 0, () => MediaAnalysisResults$, () => MediaAnalysisManifestSummary$], 6
|
|
2131
|
+
];
|
|
2132
|
+
var GetPersonTrackingRequest$ = [3, n0, _GPTR,
|
|
2133
|
+
0,
|
|
2134
|
+
[_JI, _MR, _NT, _SB],
|
|
2135
|
+
[0, 1, 0, 0], 1
|
|
2136
|
+
];
|
|
2137
|
+
var GetPersonTrackingResponse$ = [3, n0, _GPTRe,
|
|
2138
|
+
0,
|
|
2139
|
+
[_JS, _SM, _VM, _NT, _Pe, _JI, _Vi, _JT],
|
|
2140
|
+
[0, 0, () => VideoMetadata$, 0, () => PersonDetections, 0, () => Video$, 0]
|
|
2141
|
+
];
|
|
2142
|
+
var GetSegmentDetectionRequest$ = [3, n0, _GSDR,
|
|
2143
|
+
0,
|
|
2144
|
+
[_JI, _MR, _NT],
|
|
2145
|
+
[0, 1, 0], 1
|
|
2146
|
+
];
|
|
2147
|
+
var GetSegmentDetectionResponse$ = [3, n0, _GSDRe,
|
|
2148
|
+
0,
|
|
2149
|
+
[_JS, _SM, _VM, _AM, _NT, _Seg, _SST, _JI, _Vi, _JT],
|
|
2150
|
+
[0, 0, () => VideoMetadataList, () => AudioMetadataList, 0, () => SegmentDetections, () => SegmentTypesInfo, 0, () => Video$, 0]
|
|
2151
|
+
];
|
|
2152
|
+
var GetTextDetectionRequest$ = [3, n0, _GTDR,
|
|
2153
|
+
0,
|
|
2154
|
+
[_JI, _MR, _NT],
|
|
2155
|
+
[0, 1, 0], 1
|
|
2156
|
+
];
|
|
2157
|
+
var GetTextDetectionResponse$ = [3, n0, _GTDRe,
|
|
2158
|
+
0,
|
|
2159
|
+
[_JS, _SM, _VM, _TDex, _NT, _TMV, _JI, _Vi, _JT],
|
|
2160
|
+
[0, 0, () => VideoMetadata$, () => TextDetectionResults, 0, 0, 0, () => Video$, 0]
|
|
2161
|
+
];
|
|
2162
|
+
var GroundTruthManifest$ = [3, n0, _GTM,
|
|
2163
|
+
0,
|
|
2164
|
+
[_SO],
|
|
2165
|
+
[() => S3Object$]
|
|
2166
|
+
];
|
|
2167
|
+
var HumanLoopActivationOutput$ = [3, n0, _HLAO,
|
|
2168
|
+
0,
|
|
2169
|
+
[_HLA, _HLAR, _HLACER],
|
|
2170
|
+
[0, 64 | 0, [() => SynthesizedJsonHumanLoopActivationConditionsEvaluationResults, 0]]
|
|
2171
|
+
];
|
|
2172
|
+
var HumanLoopConfig$ = [3, n0, _HLC,
|
|
2173
|
+
0,
|
|
2174
|
+
[_HLN, _FDA, _DAa],
|
|
2175
|
+
[0, 0, () => HumanLoopDataAttributes$], 2
|
|
2176
|
+
];
|
|
2177
|
+
var HumanLoopDataAttributes$ = [3, n0, _HLDA,
|
|
2178
|
+
0,
|
|
2179
|
+
[_CC],
|
|
2180
|
+
[64 | 0]
|
|
2181
|
+
];
|
|
2182
|
+
var Image$ = [3, n0, _Im,
|
|
2183
|
+
0,
|
|
2184
|
+
[_B, _SO],
|
|
2185
|
+
[21, () => S3Object$]
|
|
2186
|
+
];
|
|
2187
|
+
var ImageQuality$ = [3, n0, _IQ,
|
|
2188
|
+
0,
|
|
2189
|
+
[_Br, _Sh],
|
|
2190
|
+
[1, 1]
|
|
2191
|
+
];
|
|
2192
|
+
var IndexFacesRequest$ = [3, n0, _IFR,
|
|
2193
|
+
0,
|
|
2194
|
+
[_CI, _Im, _EII, _DAe, _MF, _QF],
|
|
2195
|
+
[0, () => Image$, 0, 64 | 0, 1, 0], 2
|
|
2196
|
+
];
|
|
2197
|
+
var IndexFacesResponse$ = [3, n0, _IFRn,
|
|
2198
|
+
0,
|
|
2199
|
+
[_FRa, _OCr, _FMV, _UFn],
|
|
2200
|
+
[() => FaceRecordList, 0, 0, () => UnindexedFaces]
|
|
2201
|
+
];
|
|
2202
|
+
var Instance$ = [3, n0, _Ins,
|
|
2203
|
+
0,
|
|
2204
|
+
[_BB, _Con, _DCo],
|
|
2205
|
+
[() => BoundingBox$, 1, () => DominantColors]
|
|
2206
|
+
];
|
|
2207
|
+
var KinesisDataStream$ = [3, n0, _KDS,
|
|
2208
|
+
0,
|
|
2209
|
+
[_Ar],
|
|
2210
|
+
[0]
|
|
2211
|
+
];
|
|
2212
|
+
var KinesisVideoStream$ = [3, n0, _KVS,
|
|
2213
|
+
0,
|
|
2214
|
+
[_Ar],
|
|
2215
|
+
[0]
|
|
2216
|
+
];
|
|
2217
|
+
var KinesisVideoStreamStartSelector$ = [3, n0, _KVSSS,
|
|
2218
|
+
0,
|
|
2219
|
+
[_PT, _FN],
|
|
2220
|
+
[1, 0]
|
|
2221
|
+
];
|
|
2222
|
+
var KnownGender$ = [3, n0, _KG,
|
|
2223
|
+
0,
|
|
2224
|
+
[_Ty],
|
|
2225
|
+
[0]
|
|
2226
|
+
];
|
|
2227
|
+
var Label$ = [3, n0, _Labe,
|
|
2228
|
+
0,
|
|
2229
|
+
[_N, _Con, _Inst, _Pa, _Al, _Ca],
|
|
2230
|
+
[0, 1, () => Instances, () => Parents, () => LabelAliases, () => LabelCategories]
|
|
2231
|
+
];
|
|
2232
|
+
var LabelAlias$ = [3, n0, _LA,
|
|
2233
|
+
0,
|
|
2234
|
+
[_N],
|
|
2235
|
+
[0]
|
|
2236
|
+
];
|
|
2237
|
+
var LabelCategory$ = [3, n0, _LC,
|
|
2238
|
+
0,
|
|
2239
|
+
[_N],
|
|
2240
|
+
[0]
|
|
2241
|
+
];
|
|
2242
|
+
var LabelDetection$ = [3, n0, _LD,
|
|
2243
|
+
0,
|
|
2244
|
+
[_Ti, _Labe, _STM, _ETM, _DM],
|
|
2245
|
+
[1, () => Label$, 1, 1, 1]
|
|
2246
|
+
];
|
|
2247
|
+
var LabelDetectionSettings$ = [3, n0, _LDS,
|
|
2248
|
+
0,
|
|
2249
|
+
[_GL],
|
|
2250
|
+
[() => GeneralLabelsSettings$]
|
|
2251
|
+
];
|
|
2252
|
+
var Landmark$ = [3, n0, _Lan,
|
|
2253
|
+
0,
|
|
2254
|
+
[_Ty, _X, _Y_],
|
|
2255
|
+
[0, 1, 1]
|
|
2256
|
+
];
|
|
2257
|
+
var ListCollectionsRequest$ = [3, n0, _LCR,
|
|
2258
|
+
0,
|
|
2259
|
+
[_NT, _MR],
|
|
2260
|
+
[0, 1]
|
|
2261
|
+
];
|
|
2262
|
+
var ListCollectionsResponse$ = [3, n0, _LCRi,
|
|
2263
|
+
0,
|
|
2264
|
+
[_CIo, _NT, _FMVa],
|
|
2265
|
+
[64 | 0, 0, 64 | 0]
|
|
2266
|
+
];
|
|
2267
|
+
var ListDatasetEntriesRequest$ = [3, n0, _LDER,
|
|
2268
|
+
0,
|
|
2269
|
+
[_DA, _CLo, _Label, _SRC, _HE, _NT, _MR],
|
|
2270
|
+
[0, 64 | 0, 2, 0, 2, 0, 1], 1
|
|
2271
|
+
];
|
|
2272
|
+
var ListDatasetEntriesResponse$ = [3, n0, _LDERi,
|
|
2273
|
+
0,
|
|
2274
|
+
[_DE, _NT],
|
|
2275
|
+
[64 | 0, 0]
|
|
2276
|
+
];
|
|
2277
|
+
var ListDatasetLabelsRequest$ = [3, n0, _LDLR,
|
|
2278
|
+
0,
|
|
2279
|
+
[_DA, _NT, _MR],
|
|
2280
|
+
[0, 0, 1], 1
|
|
2281
|
+
];
|
|
2282
|
+
var ListDatasetLabelsResponse$ = [3, n0, _LDLRi,
|
|
2283
|
+
0,
|
|
2284
|
+
[_DLDa, _NT],
|
|
2285
|
+
[() => DatasetLabelDescriptions, 0]
|
|
2286
|
+
];
|
|
2287
|
+
var ListFacesRequest$ = [3, n0, _LFR,
|
|
2288
|
+
0,
|
|
2289
|
+
[_CI, _NT, _MR, _UI, _FIa],
|
|
2290
|
+
[0, 0, 1, 0, 64 | 0], 1
|
|
2291
|
+
];
|
|
2292
|
+
var ListFacesResponse$ = [3, n0, _LFRi,
|
|
2293
|
+
0,
|
|
2294
|
+
[_Fa, _NT, _FMV],
|
|
2295
|
+
[() => FaceList, 0, 0]
|
|
2296
|
+
];
|
|
2297
|
+
var ListMediaAnalysisJobsRequest$ = [3, n0, _LMAJR,
|
|
2298
|
+
0,
|
|
2299
|
+
[_NT, _MR],
|
|
2300
|
+
[0, 1]
|
|
2301
|
+
];
|
|
2302
|
+
var ListMediaAnalysisJobsResponse$ = [3, n0, _LMAJRi,
|
|
2303
|
+
0,
|
|
2304
|
+
[_MAJ, _NT],
|
|
2305
|
+
[() => MediaAnalysisJobDescriptions, 0], 1
|
|
2306
|
+
];
|
|
2307
|
+
var ListProjectPoliciesRequest$ = [3, n0, _LPPR,
|
|
2308
|
+
0,
|
|
2309
|
+
[_PA, _NT, _MR],
|
|
2310
|
+
[0, 0, 1], 1
|
|
2311
|
+
];
|
|
2312
|
+
var ListProjectPoliciesResponse$ = [3, n0, _LPPRi,
|
|
2313
|
+
0,
|
|
2314
|
+
[_PPr, _NT],
|
|
2315
|
+
[() => ProjectPolicies, 0]
|
|
2316
|
+
];
|
|
2317
|
+
var ListStreamProcessorsRequest$ = [3, n0, _LSPR,
|
|
2318
|
+
0,
|
|
2319
|
+
[_NT, _MR],
|
|
2320
|
+
[0, 1]
|
|
2321
|
+
];
|
|
2322
|
+
var ListStreamProcessorsResponse$ = [3, n0, _LSPRi,
|
|
2323
|
+
0,
|
|
2324
|
+
[_NT, _SP],
|
|
2325
|
+
[0, () => StreamProcessorList]
|
|
2326
|
+
];
|
|
2327
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2328
|
+
0,
|
|
2329
|
+
[_RAe],
|
|
2330
|
+
[0], 1
|
|
2331
|
+
];
|
|
2332
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2333
|
+
0,
|
|
2334
|
+
[_Ta],
|
|
2335
|
+
[128 | 0]
|
|
2336
|
+
];
|
|
2337
|
+
var ListUsersRequest$ = [3, n0, _LUR,
|
|
2338
|
+
0,
|
|
2339
|
+
[_CI, _MR, _NT],
|
|
2340
|
+
[0, 1, 0], 1
|
|
2341
|
+
];
|
|
2342
|
+
var ListUsersResponse$ = [3, n0, _LURi,
|
|
2343
|
+
0,
|
|
2344
|
+
[_Us, _NT],
|
|
2345
|
+
[() => UserList, 0]
|
|
2346
|
+
];
|
|
2347
|
+
var LivenessOutputConfig$ = [3, n0, _LOC,
|
|
2348
|
+
0,
|
|
2349
|
+
[_SBu, _SKP],
|
|
2350
|
+
[0, 0], 1
|
|
2351
|
+
];
|
|
2352
|
+
var MatchedUser$ = [3, n0, _MU,
|
|
2353
|
+
0,
|
|
2354
|
+
[_UI, _US],
|
|
2355
|
+
[0, 0]
|
|
2356
|
+
];
|
|
2357
|
+
var MediaAnalysisDetectModerationLabelsConfig$ = [3, n0, _MADMLC,
|
|
2358
|
+
0,
|
|
2359
|
+
[_MCi, _PV],
|
|
2360
|
+
[1, 0]
|
|
2361
|
+
];
|
|
2362
|
+
var MediaAnalysisInput$ = [3, n0, _MAI,
|
|
2363
|
+
0,
|
|
2364
|
+
[_SO],
|
|
2365
|
+
[() => S3Object$], 1
|
|
2366
|
+
];
|
|
2367
|
+
var MediaAnalysisJobDescription$ = [3, n0, _MAJD,
|
|
2368
|
+
0,
|
|
2369
|
+
[_JI, _OCp, _St, _CTr, _In, _OC, _JN, _FDai, _CTom, _KKI, _Re, _MS],
|
|
2370
|
+
[0, () => MediaAnalysisOperationsConfig$, 0, 4, () => MediaAnalysisInput$, () => MediaAnalysisOutputConfig$, 0, () => MediaAnalysisJobFailureDetails$, 4, 0, () => MediaAnalysisResults$, () => MediaAnalysisManifestSummary$], 6
|
|
2371
|
+
];
|
|
2372
|
+
var MediaAnalysisJobFailureDetails$ = [3, n0, _MAJFD,
|
|
2373
|
+
0,
|
|
2374
|
+
[_C, _M],
|
|
2375
|
+
[0, 0]
|
|
2376
|
+
];
|
|
2377
|
+
var MediaAnalysisManifestSummary$ = [3, n0, _MAMS,
|
|
2378
|
+
0,
|
|
2379
|
+
[_SO],
|
|
2380
|
+
[() => S3Object$]
|
|
2381
|
+
];
|
|
2382
|
+
var MediaAnalysisModelVersions$ = [3, n0, _MAMV,
|
|
2383
|
+
0,
|
|
2384
|
+
[_Mo],
|
|
2385
|
+
[0]
|
|
2386
|
+
];
|
|
2387
|
+
var MediaAnalysisOperationsConfig$ = [3, n0, _MAOC,
|
|
2388
|
+
0,
|
|
2389
|
+
[_DML],
|
|
2390
|
+
[() => MediaAnalysisDetectModerationLabelsConfig$]
|
|
2391
|
+
];
|
|
2392
|
+
var MediaAnalysisOutputConfig$ = [3, n0, _MAOCe,
|
|
2393
|
+
0,
|
|
2394
|
+
[_SBu, _SKP],
|
|
2395
|
+
[0, 0], 1
|
|
2396
|
+
];
|
|
2397
|
+
var MediaAnalysisResults$ = [3, n0, _MAR,
|
|
2398
|
+
0,
|
|
2399
|
+
[_SO, _MV],
|
|
2400
|
+
[() => S3Object$, () => MediaAnalysisModelVersions$]
|
|
2401
|
+
];
|
|
2402
|
+
var ModerationLabel$ = [3, n0, _ML,
|
|
2403
|
+
0,
|
|
2404
|
+
[_Con, _N, _PNa, _TLa],
|
|
2405
|
+
[1, 0, 0, 1]
|
|
2406
|
+
];
|
|
2407
|
+
var MouthOpen$ = [3, n0, _MO,
|
|
2408
|
+
0,
|
|
2409
|
+
[_V, _Con],
|
|
2410
|
+
[2, 1]
|
|
2411
|
+
];
|
|
2412
|
+
var Mustache$ = [3, n0, _Mu,
|
|
2413
|
+
0,
|
|
2414
|
+
[_V, _Con],
|
|
2415
|
+
[2, 1]
|
|
2416
|
+
];
|
|
2417
|
+
var NotificationChannel$ = [3, n0, _NC,
|
|
2418
|
+
0,
|
|
2419
|
+
[_SNSTA, _RA],
|
|
2420
|
+
[0, 0], 2
|
|
2421
|
+
];
|
|
2422
|
+
var OutputConfig$ = [3, n0, _OC,
|
|
2423
|
+
0,
|
|
2424
|
+
[_SBu, _SKP],
|
|
2425
|
+
[0, 0]
|
|
2426
|
+
];
|
|
2427
|
+
var Parent$ = [3, n0, _Par,
|
|
2428
|
+
0,
|
|
2429
|
+
[_N],
|
|
2430
|
+
[0]
|
|
2431
|
+
];
|
|
2432
|
+
var PersonDetail$ = [3, n0, _PDe,
|
|
2433
|
+
0,
|
|
2434
|
+
[_Ind, _BB, _F],
|
|
2435
|
+
[1, () => BoundingBox$, () => FaceDetail$]
|
|
2436
|
+
];
|
|
2437
|
+
var PersonDetection$ = [3, n0, _PDer,
|
|
2438
|
+
0,
|
|
2439
|
+
[_Ti, _Per],
|
|
2440
|
+
[1, () => PersonDetail$]
|
|
2441
|
+
];
|
|
2442
|
+
var PersonMatch$ = [3, n0, _PM,
|
|
2443
|
+
0,
|
|
2444
|
+
[_Ti, _Per, _FM],
|
|
2445
|
+
[1, () => PersonDetail$, () => FaceMatchList]
|
|
2446
|
+
];
|
|
2447
|
+
var Point$ = [3, n0, _Poi,
|
|
2448
|
+
0,
|
|
2449
|
+
[_X, _Y_],
|
|
2450
|
+
[1, 1]
|
|
2451
|
+
];
|
|
2452
|
+
var Pose$ = [3, n0, _P,
|
|
2453
|
+
0,
|
|
2454
|
+
[_Ro, _Y, _Pi],
|
|
2455
|
+
[1, 1, 1]
|
|
2456
|
+
];
|
|
2457
|
+
var ProjectDescription$ = [3, n0, _PDr,
|
|
2458
|
+
0,
|
|
2459
|
+
[_PA, _CTr, _St, _D, _Fe, _AU],
|
|
2460
|
+
[0, 4, 0, () => DatasetMetadataList, 0, 0]
|
|
2461
|
+
];
|
|
2462
|
+
var ProjectPolicy$ = [3, n0, _PPro,
|
|
2463
|
+
0,
|
|
2464
|
+
[_PA, _PNo, _PRI, _PDo, _CTr, _LUT],
|
|
2465
|
+
[0, 0, 0, 0, 4, 4]
|
|
2466
|
+
];
|
|
2467
|
+
var ProjectVersionDescription$ = [3, n0, _PVDr,
|
|
2468
|
+
0,
|
|
2469
|
+
[_PVA, _CTr, _MIU, _St, _SM, _BTTIS, _TET, _OC, _TDR, _TDRe, _ER, _MS, _KKI, _MIUa, _SPVA, _VD, _Fe, _BMV, _FC],
|
|
2470
|
+
[0, 4, 1, 0, 0, 1, 4, () => OutputConfig$, () => TrainingDataResult$, () => TestingDataResult$, () => EvaluationResult$, () => GroundTruthManifest$, 0, 1, 0, 0, 0, 0, () => CustomizationFeatureConfig$]
|
|
2471
|
+
];
|
|
2472
|
+
var ProtectiveEquipmentBodyPart$ = [3, n0, _PEBP,
|
|
2473
|
+
0,
|
|
2474
|
+
[_N, _Con, _EDq],
|
|
2475
|
+
[0, 1, () => EquipmentDetections]
|
|
2476
|
+
];
|
|
2477
|
+
var ProtectiveEquipmentPerson$ = [3, n0, _PEP,
|
|
2478
|
+
0,
|
|
2479
|
+
[_BP, _BB, _Con, _I],
|
|
2480
|
+
[() => BodyParts, () => BoundingBox$, 1, 1]
|
|
2481
|
+
];
|
|
2482
|
+
var ProtectiveEquipmentSummarizationAttributes$ = [3, n0, _PESA,
|
|
2483
|
+
0,
|
|
2484
|
+
[_MCi, _RET],
|
|
2485
|
+
[1, 64 | 0], 2
|
|
2486
|
+
];
|
|
2487
|
+
var ProtectiveEquipmentSummary$ = [3, n0, _PES,
|
|
2488
|
+
0,
|
|
2489
|
+
[_PWRE, _PWREe, _PI],
|
|
2490
|
+
[64 | 1, 64 | 1, 64 | 1]
|
|
2491
|
+
];
|
|
2492
|
+
var PutProjectPolicyRequest$ = [3, n0, _PPPR,
|
|
2493
|
+
0,
|
|
2494
|
+
[_PA, _PNo, _PDo, _PRI],
|
|
2495
|
+
[0, 0, 0, 0], 3
|
|
2496
|
+
];
|
|
2497
|
+
var PutProjectPolicyResponse$ = [3, n0, _PPPRu,
|
|
2498
|
+
0,
|
|
2499
|
+
[_PRI],
|
|
2500
|
+
[0]
|
|
2501
|
+
];
|
|
2502
|
+
var RecognizeCelebritiesRequest$ = [3, n0, _RCR,
|
|
2503
|
+
0,
|
|
2504
|
+
[_Im],
|
|
2505
|
+
[() => Image$], 1
|
|
2506
|
+
];
|
|
2507
|
+
var RecognizeCelebritiesResponse$ = [3, n0, _RCRe,
|
|
2508
|
+
0,
|
|
2509
|
+
[_CFe, _UFnr, _OCr],
|
|
2510
|
+
[() => CelebrityList, () => ComparedFaceList, 0]
|
|
2511
|
+
];
|
|
2512
|
+
var RegionOfInterest$ = [3, n0, _ROIe,
|
|
2513
|
+
0,
|
|
2514
|
+
[_BB, _Po],
|
|
2515
|
+
[() => BoundingBox$, () => Polygon]
|
|
2516
|
+
];
|
|
2517
|
+
var S3Destination$ = [3, n0, _SD,
|
|
2518
|
+
0,
|
|
2519
|
+
[_Bu, _KP],
|
|
2520
|
+
[0, 0]
|
|
2521
|
+
];
|
|
2522
|
+
var S3Object$ = [3, n0, _SO,
|
|
2523
|
+
0,
|
|
2524
|
+
[_Bu, _N, _Ve],
|
|
2525
|
+
[0, 0, 0]
|
|
2526
|
+
];
|
|
2527
|
+
var SearchedFace$ = [3, n0, _SF,
|
|
2528
|
+
0,
|
|
2529
|
+
[_FI],
|
|
2530
|
+
[0]
|
|
2531
|
+
];
|
|
2532
|
+
var SearchedFaceDetails$ = [3, n0, _SFD,
|
|
2533
|
+
0,
|
|
2534
|
+
[_FDa],
|
|
2535
|
+
[() => FaceDetail$]
|
|
2536
|
+
];
|
|
2537
|
+
var SearchedUser$ = [3, n0, _SU,
|
|
2538
|
+
0,
|
|
2539
|
+
[_UI],
|
|
2540
|
+
[0]
|
|
2541
|
+
];
|
|
2542
|
+
var SearchFacesByImageRequest$ = [3, n0, _SFBIR,
|
|
2543
|
+
0,
|
|
2544
|
+
[_CI, _Im, _MF, _FMT, _QF],
|
|
2545
|
+
[0, () => Image$, 1, 1, 0], 2
|
|
2546
|
+
];
|
|
2547
|
+
var SearchFacesByImageResponse$ = [3, n0, _SFBIRe,
|
|
2548
|
+
0,
|
|
2549
|
+
[_SFBB, _SFC, _FM, _FMV],
|
|
2550
|
+
[() => BoundingBox$, 1, () => FaceMatchList, 0]
|
|
2551
|
+
];
|
|
2552
|
+
var SearchFacesRequest$ = [3, n0, _SFR,
|
|
2553
|
+
0,
|
|
2554
|
+
[_CI, _FI, _MF, _FMT],
|
|
2555
|
+
[0, 0, 1, 1], 2
|
|
2556
|
+
];
|
|
2557
|
+
var SearchFacesResponse$ = [3, n0, _SFRe,
|
|
2558
|
+
0,
|
|
2559
|
+
[_SFI, _FM, _FMV],
|
|
2560
|
+
[0, () => FaceMatchList, 0]
|
|
2561
|
+
];
|
|
2562
|
+
var SearchUsersByImageRequest$ = [3, n0, _SUBIR,
|
|
2563
|
+
0,
|
|
2564
|
+
[_CI, _Im, _UMT, _MUa, _QF],
|
|
2565
|
+
[0, () => Image$, 1, 1, 0], 2
|
|
2566
|
+
];
|
|
2567
|
+
var SearchUsersByImageResponse$ = [3, n0, _SUBIRe,
|
|
2568
|
+
0,
|
|
2569
|
+
[_UM, _FMV, _SF, _UFns],
|
|
2570
|
+
[() => UserMatchList, 0, () => SearchedFaceDetails$, () => UnsearchedFacesList]
|
|
2571
|
+
];
|
|
2572
|
+
var SearchUsersRequest$ = [3, n0, _SUR,
|
|
2573
|
+
0,
|
|
2574
|
+
[_CI, _UI, _FI, _UMT, _MUa],
|
|
2575
|
+
[0, 0, 0, 1, 1], 1
|
|
2576
|
+
];
|
|
2577
|
+
var SearchUsersResponse$ = [3, n0, _SURe,
|
|
2578
|
+
0,
|
|
2579
|
+
[_UM, _FMV, _SF, _SU],
|
|
2580
|
+
[() => UserMatchList, 0, () => SearchedFace$, () => SearchedUser$]
|
|
2581
|
+
];
|
|
2582
|
+
var SegmentDetection$ = [3, n0, _SDe,
|
|
2583
|
+
0,
|
|
2584
|
+
[_Ty, _STM, _ETM, _DM, _STSMPTE, _ETSMPTE, _DSMPTE, _TCS, _SS, _SFN, _EFN, _DFu],
|
|
2585
|
+
[0, 1, 1, 1, 0, 0, 0, () => TechnicalCueSegment$, () => ShotSegment$, 1, 1, 1]
|
|
2586
|
+
];
|
|
2587
|
+
var SegmentTypeInfo$ = [3, n0, _STI,
|
|
2588
|
+
0,
|
|
2589
|
+
[_Ty, _MVo],
|
|
2590
|
+
[0, 0]
|
|
2591
|
+
];
|
|
2592
|
+
var ShotSegment$ = [3, n0, _SS,
|
|
2593
|
+
0,
|
|
2594
|
+
[_Ind, _Con],
|
|
2595
|
+
[1, 1]
|
|
2596
|
+
];
|
|
2597
|
+
var Smile$ = [3, n0, _S,
|
|
2598
|
+
0,
|
|
2599
|
+
[_V, _Con],
|
|
2600
|
+
[2, 1]
|
|
2601
|
+
];
|
|
2602
|
+
var StartCelebrityRecognitionRequest$ = [3, n0, _SCRR,
|
|
2603
|
+
0,
|
|
2604
|
+
[_Vi, _CRT, _NC, _JT],
|
|
2605
|
+
[() => Video$, 0, () => NotificationChannel$, 0], 1
|
|
2606
|
+
];
|
|
2607
|
+
var StartCelebrityRecognitionResponse$ = [3, n0, _SCRRt,
|
|
2608
|
+
0,
|
|
2609
|
+
[_JI],
|
|
2610
|
+
[0]
|
|
2611
|
+
];
|
|
2612
|
+
var StartContentModerationRequest$ = [3, n0, _SCMR,
|
|
2613
|
+
0,
|
|
2614
|
+
[_Vi, _MCi, _CRT, _NC, _JT],
|
|
2615
|
+
[() => Video$, 1, 0, () => NotificationChannel$, 0], 1
|
|
2616
|
+
];
|
|
2617
|
+
var StartContentModerationResponse$ = [3, n0, _SCMRt,
|
|
2618
|
+
0,
|
|
2619
|
+
[_JI],
|
|
2620
|
+
[0]
|
|
2621
|
+
];
|
|
2622
|
+
var StartFaceDetectionRequest$ = [3, n0, _SFDR,
|
|
2623
|
+
0,
|
|
2624
|
+
[_Vi, _CRT, _NC, _FA, _JT],
|
|
2625
|
+
[() => Video$, 0, () => NotificationChannel$, 0, 0], 1
|
|
2626
|
+
];
|
|
2627
|
+
var StartFaceDetectionResponse$ = [3, n0, _SFDRt,
|
|
2628
|
+
0,
|
|
2629
|
+
[_JI],
|
|
2630
|
+
[0]
|
|
2631
|
+
];
|
|
2632
|
+
var StartFaceSearchRequest$ = [3, n0, _SFSR,
|
|
2633
|
+
0,
|
|
2634
|
+
[_Vi, _CI, _CRT, _FMT, _NC, _JT],
|
|
2635
|
+
[() => Video$, 0, 0, 1, () => NotificationChannel$, 0], 2
|
|
2636
|
+
];
|
|
2637
|
+
var StartFaceSearchResponse$ = [3, n0, _SFSRt,
|
|
2638
|
+
0,
|
|
2639
|
+
[_JI],
|
|
2640
|
+
[0]
|
|
2641
|
+
];
|
|
2642
|
+
var StartLabelDetectionRequest$ = [3, n0, _SLDR,
|
|
2643
|
+
0,
|
|
2644
|
+
[_Vi, _CRT, _MCi, _NC, _JT, _Fea, _Se],
|
|
2645
|
+
[() => Video$, 0, 1, () => NotificationChannel$, 0, 64 | 0, () => LabelDetectionSettings$], 1
|
|
2646
|
+
];
|
|
2647
|
+
var StartLabelDetectionResponse$ = [3, n0, _SLDRt,
|
|
2648
|
+
0,
|
|
2649
|
+
[_JI],
|
|
2650
|
+
[0]
|
|
2651
|
+
];
|
|
2652
|
+
var StartMediaAnalysisJobRequest$ = [3, n0, _SMAJR,
|
|
2653
|
+
0,
|
|
2654
|
+
[_OCp, _In, _OC, _CRT, _JN, _KKI],
|
|
2655
|
+
[() => MediaAnalysisOperationsConfig$, () => MediaAnalysisInput$, () => MediaAnalysisOutputConfig$, [0, 4], 0, 0], 3
|
|
2656
|
+
];
|
|
2657
|
+
var StartMediaAnalysisJobResponse$ = [3, n0, _SMAJRt,
|
|
2658
|
+
0,
|
|
2659
|
+
[_JI],
|
|
2660
|
+
[0], 1
|
|
2661
|
+
];
|
|
2662
|
+
var StartPersonTrackingRequest$ = [3, n0, _SPTR,
|
|
2663
|
+
0,
|
|
2664
|
+
[_Vi, _CRT, _NC, _JT],
|
|
2665
|
+
[() => Video$, 0, () => NotificationChannel$, 0], 1
|
|
2666
|
+
];
|
|
2667
|
+
var StartPersonTrackingResponse$ = [3, n0, _SPTRt,
|
|
2668
|
+
0,
|
|
2669
|
+
[_JI],
|
|
2670
|
+
[0]
|
|
2671
|
+
];
|
|
2672
|
+
var StartProjectVersionRequest$ = [3, n0, _SPVR,
|
|
2673
|
+
0,
|
|
2674
|
+
[_PVA, _MIU, _MIUa],
|
|
2675
|
+
[0, 1, 1], 2
|
|
2676
|
+
];
|
|
2677
|
+
var StartProjectVersionResponse$ = [3, n0, _SPVRt,
|
|
2678
|
+
0,
|
|
2679
|
+
[_St],
|
|
2680
|
+
[0]
|
|
2681
|
+
];
|
|
2682
|
+
var StartSegmentDetectionFilters$ = [3, n0, _SSDF,
|
|
2683
|
+
0,
|
|
2684
|
+
[_TCF, _SFh],
|
|
2685
|
+
[() => StartTechnicalCueDetectionFilter$, () => StartShotDetectionFilter$]
|
|
2686
|
+
];
|
|
2687
|
+
var StartSegmentDetectionRequest$ = [3, n0, _SSDR,
|
|
2688
|
+
0,
|
|
2689
|
+
[_Vi, _STe, _CRT, _NC, _JT, _Fi],
|
|
2690
|
+
[() => Video$, 64 | 0, 0, () => NotificationChannel$, 0, () => StartSegmentDetectionFilters$], 2
|
|
2691
|
+
];
|
|
2692
|
+
var StartSegmentDetectionResponse$ = [3, n0, _SSDRt,
|
|
2693
|
+
0,
|
|
2694
|
+
[_JI],
|
|
2695
|
+
[0]
|
|
2696
|
+
];
|
|
2697
|
+
var StartShotDetectionFilter$ = [3, n0, _SSDFt,
|
|
2698
|
+
0,
|
|
2699
|
+
[_MSC],
|
|
2700
|
+
[1]
|
|
2701
|
+
];
|
|
2702
|
+
var StartStreamProcessorRequest$ = [3, n0, _SSPR,
|
|
2703
|
+
0,
|
|
2704
|
+
[_N, _SSt, _SSto],
|
|
2705
|
+
[0, () => StreamProcessingStartSelector$, () => StreamProcessingStopSelector$], 1
|
|
2706
|
+
];
|
|
2707
|
+
var StartStreamProcessorResponse$ = [3, n0, _SSPRt,
|
|
2708
|
+
0,
|
|
2709
|
+
[_SIe],
|
|
2710
|
+
[0]
|
|
2711
|
+
];
|
|
2712
|
+
var StartTechnicalCueDetectionFilter$ = [3, n0, _STCDF,
|
|
2713
|
+
0,
|
|
2714
|
+
[_MSC, _BF],
|
|
2715
|
+
[1, () => BlackFrame$]
|
|
2716
|
+
];
|
|
2717
|
+
var StartTextDetectionFilters$ = [3, n0, _STDF,
|
|
2718
|
+
0,
|
|
2719
|
+
[_WF, _ROI],
|
|
2720
|
+
[() => DetectionFilter$, () => RegionsOfInterest]
|
|
2721
|
+
];
|
|
2722
|
+
var StartTextDetectionRequest$ = [3, n0, _STDR,
|
|
2723
|
+
0,
|
|
2724
|
+
[_Vi, _CRT, _NC, _JT, _Fi],
|
|
2725
|
+
[() => Video$, 0, () => NotificationChannel$, 0, () => StartTextDetectionFilters$], 1
|
|
2726
|
+
];
|
|
2727
|
+
var StartTextDetectionResponse$ = [3, n0, _STDRt,
|
|
2728
|
+
0,
|
|
2729
|
+
[_JI],
|
|
2730
|
+
[0]
|
|
2731
|
+
];
|
|
2732
|
+
var StopProjectVersionRequest$ = [3, n0, _SPVRto,
|
|
2733
|
+
0,
|
|
2734
|
+
[_PVA],
|
|
2735
|
+
[0], 1
|
|
2736
|
+
];
|
|
2737
|
+
var StopProjectVersionResponse$ = [3, n0, _SPVRtop,
|
|
2738
|
+
0,
|
|
2739
|
+
[_St],
|
|
2740
|
+
[0]
|
|
2741
|
+
];
|
|
2742
|
+
var StopStreamProcessorRequest$ = [3, n0, _SSPRto,
|
|
2743
|
+
0,
|
|
2744
|
+
[_N],
|
|
2745
|
+
[0], 1
|
|
2746
|
+
];
|
|
2747
|
+
var StopStreamProcessorResponse$ = [3, n0, _SSPRtop,
|
|
2748
|
+
0,
|
|
2749
|
+
[],
|
|
2750
|
+
[]
|
|
2751
|
+
];
|
|
2752
|
+
var StreamProcessingStartSelector$ = [3, n0, _SPSS,
|
|
2753
|
+
0,
|
|
2754
|
+
[_KVSSSS],
|
|
2755
|
+
[() => KinesisVideoStreamStartSelector$]
|
|
2756
|
+
];
|
|
2757
|
+
var StreamProcessingStopSelector$ = [3, n0, _SPSSt,
|
|
2758
|
+
0,
|
|
2759
|
+
[_MDIS],
|
|
2760
|
+
[1]
|
|
2761
|
+
];
|
|
2762
|
+
var StreamProcessor$ = [3, n0, _SPt,
|
|
2763
|
+
0,
|
|
2764
|
+
[_N, _St],
|
|
2765
|
+
[0, 0]
|
|
2766
|
+
];
|
|
2767
|
+
var StreamProcessorDataSharingPreference$ = [3, n0, _SPDSP,
|
|
2768
|
+
0,
|
|
2769
|
+
[_OI],
|
|
2770
|
+
[2], 1
|
|
2771
|
+
];
|
|
2772
|
+
var StreamProcessorInput$ = [3, n0, _SPI,
|
|
2773
|
+
0,
|
|
2774
|
+
[_KVS],
|
|
2775
|
+
[() => KinesisVideoStream$]
|
|
2776
|
+
];
|
|
2777
|
+
var StreamProcessorNotificationChannel$ = [3, n0, _SPNC,
|
|
2778
|
+
0,
|
|
2779
|
+
[_SNSTA],
|
|
2780
|
+
[0], 1
|
|
2781
|
+
];
|
|
2782
|
+
var StreamProcessorOutput$ = [3, n0, _SPO,
|
|
2783
|
+
0,
|
|
2784
|
+
[_KDS, _SD],
|
|
2785
|
+
[() => KinesisDataStream$, () => S3Destination$]
|
|
2786
|
+
];
|
|
2787
|
+
var StreamProcessorSettings$ = [3, n0, _SPS,
|
|
2788
|
+
0,
|
|
2789
|
+
[_FSa, _CH],
|
|
2790
|
+
[() => FaceSearchSettings$, () => ConnectedHomeSettings$]
|
|
2791
|
+
];
|
|
2792
|
+
var StreamProcessorSettingsForUpdate$ = [3, n0, _SPSFU,
|
|
2793
|
+
0,
|
|
2794
|
+
[_CHFU],
|
|
2795
|
+
[() => ConnectedHomeSettingsForUpdate$]
|
|
2796
|
+
];
|
|
2797
|
+
var Summary$ = [3, n0, _Su,
|
|
2798
|
+
0,
|
|
2799
|
+
[_SO],
|
|
2800
|
+
[() => S3Object$]
|
|
2801
|
+
];
|
|
2802
|
+
var Sunglasses$ = [3, n0, _Sun,
|
|
2803
|
+
0,
|
|
2804
|
+
[_V, _Con],
|
|
2805
|
+
[2, 1]
|
|
2806
|
+
];
|
|
2807
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2808
|
+
0,
|
|
2809
|
+
[_RAe, _Ta],
|
|
2810
|
+
[0, 128 | 0], 2
|
|
2811
|
+
];
|
|
2812
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2813
|
+
0,
|
|
2814
|
+
[],
|
|
2815
|
+
[]
|
|
2816
|
+
];
|
|
2817
|
+
var TechnicalCueSegment$ = [3, n0, _TCS,
|
|
2818
|
+
0,
|
|
2819
|
+
[_Ty, _Con],
|
|
2820
|
+
[0, 1]
|
|
2821
|
+
];
|
|
2822
|
+
var TestingData$ = [3, n0, _TDe,
|
|
2823
|
+
0,
|
|
2824
|
+
[_As, _AC],
|
|
2825
|
+
[() => Assets, 2]
|
|
2826
|
+
];
|
|
2827
|
+
var TestingDataResult$ = [3, n0, _TDRe,
|
|
2828
|
+
0,
|
|
2829
|
+
[_In, _O, _Va],
|
|
2830
|
+
[() => TestingData$, () => TestingData$, () => ValidationData$]
|
|
2831
|
+
];
|
|
2832
|
+
var TextDetection$ = [3, n0, _TDext,
|
|
2833
|
+
0,
|
|
2834
|
+
[_DTe, _Ty, _I, _PIa, _Con, _G],
|
|
2835
|
+
[0, 0, 1, 1, 1, () => Geometry$]
|
|
2836
|
+
];
|
|
2837
|
+
var TextDetectionResult$ = [3, n0, _TDRex,
|
|
2838
|
+
0,
|
|
2839
|
+
[_Ti, _TDext],
|
|
2840
|
+
[1, () => TextDetection$]
|
|
2841
|
+
];
|
|
2842
|
+
var TrainingData$ = [3, n0, _TD,
|
|
2843
|
+
0,
|
|
2844
|
+
[_As],
|
|
2845
|
+
[() => Assets]
|
|
2846
|
+
];
|
|
2847
|
+
var TrainingDataResult$ = [3, n0, _TDR,
|
|
2848
|
+
0,
|
|
2849
|
+
[_In, _O, _Va],
|
|
2850
|
+
[() => TrainingData$, () => TrainingData$, () => ValidationData$]
|
|
2851
|
+
];
|
|
2852
|
+
var UnindexedFace$ = [3, n0, _UFni,
|
|
2853
|
+
0,
|
|
2854
|
+
[_Rea, _FDa],
|
|
2855
|
+
[64 | 0, () => FaceDetail$]
|
|
2856
|
+
];
|
|
2857
|
+
var UnsearchedFace$ = [3, n0, _UFnse,
|
|
2858
|
+
0,
|
|
2859
|
+
[_FD, _Rea],
|
|
2860
|
+
[() => FaceDetail$, 64 | 0]
|
|
2861
|
+
];
|
|
2862
|
+
var UnsuccessfulFaceAssociation$ = [3, n0, _UFAn,
|
|
2863
|
+
0,
|
|
2864
|
+
[_FI, _UI, _Con, _Rea],
|
|
2865
|
+
[0, 0, 1, 64 | 0]
|
|
2866
|
+
];
|
|
2867
|
+
var UnsuccessfulFaceDeletion$ = [3, n0, _UFDns,
|
|
2868
|
+
0,
|
|
2869
|
+
[_FI, _UI, _Rea],
|
|
2870
|
+
[0, 0, 64 | 0]
|
|
2871
|
+
];
|
|
2872
|
+
var UnsuccessfulFaceDisassociation$ = [3, n0, _UFDnsu,
|
|
2873
|
+
0,
|
|
2874
|
+
[_FI, _UI, _Rea],
|
|
2875
|
+
[0, 0, 64 | 0]
|
|
2876
|
+
];
|
|
2877
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2878
|
+
0,
|
|
2879
|
+
[_RAe, _TK],
|
|
2880
|
+
[0, 64 | 0], 2
|
|
2881
|
+
];
|
|
2882
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2883
|
+
0,
|
|
2884
|
+
[],
|
|
2885
|
+
[]
|
|
2886
|
+
];
|
|
2887
|
+
var UpdateDatasetEntriesRequest$ = [3, n0, _UDER,
|
|
2888
|
+
0,
|
|
2889
|
+
[_DA, _Cha],
|
|
2890
|
+
[0, () => DatasetChanges$], 2
|
|
2891
|
+
];
|
|
2892
|
+
var UpdateDatasetEntriesResponse$ = [3, n0, _UDERp,
|
|
2893
|
+
0,
|
|
2894
|
+
[],
|
|
2895
|
+
[]
|
|
2896
|
+
];
|
|
2897
|
+
var UpdateStreamProcessorRequest$ = [3, n0, _USPR,
|
|
2898
|
+
0,
|
|
2899
|
+
[_N, _SFU, _ROIFU, _DSPFU, _PTD],
|
|
2900
|
+
[0, () => StreamProcessorSettingsForUpdate$, () => RegionsOfInterest, () => StreamProcessorDataSharingPreference$, 64 | 0], 1
|
|
2901
|
+
];
|
|
2902
|
+
var UpdateStreamProcessorResponse$ = [3, n0, _USPRp,
|
|
2903
|
+
0,
|
|
2904
|
+
[],
|
|
2905
|
+
[]
|
|
2906
|
+
];
|
|
2907
|
+
var User$ = [3, n0, _Use,
|
|
2908
|
+
0,
|
|
2909
|
+
[_UI, _US],
|
|
2910
|
+
[0, 0]
|
|
2911
|
+
];
|
|
2912
|
+
var UserMatch$ = [3, n0, _UMs,
|
|
2913
|
+
0,
|
|
2914
|
+
[_Si, _Use],
|
|
2915
|
+
[1, () => MatchedUser$]
|
|
2916
|
+
];
|
|
2917
|
+
var ValidationData$ = [3, n0, _VDa,
|
|
2918
|
+
0,
|
|
2919
|
+
[_As],
|
|
2920
|
+
[() => Assets]
|
|
2921
|
+
];
|
|
2922
|
+
var Versions$ = [3, n0, _Ver,
|
|
2923
|
+
0,
|
|
2924
|
+
[_Mi, _Ma],
|
|
2925
|
+
[0, 0]
|
|
2926
|
+
];
|
|
2927
|
+
var Video$ = [3, n0, _Vi,
|
|
2928
|
+
0,
|
|
2929
|
+
[_SO],
|
|
2930
|
+
[() => S3Object$]
|
|
2931
|
+
];
|
|
2932
|
+
var VideoMetadata$ = [3, n0, _VM,
|
|
2933
|
+
0,
|
|
2934
|
+
[_Co, _DM, _For, _FRr, _FH, _FW, _CRo],
|
|
2935
|
+
[0, 1, 0, 1, 1, 1, 0]
|
|
2936
|
+
];
|
|
2937
|
+
var Assets = [1, n0, _As,
|
|
2938
|
+
0, () => Asset$
|
|
2939
|
+
];
|
|
2940
|
+
var AssociatedFacesList = [1, n0, _AFL,
|
|
2941
|
+
0, () => AssociatedFace$
|
|
2942
|
+
];
|
|
2943
|
+
var AudioMetadataList = [1, n0, _AML,
|
|
2944
|
+
0, () => AudioMetadata$
|
|
2945
|
+
];
|
|
2946
|
+
var AuditImages = [1, n0, _AIu,
|
|
2947
|
+
0, [() => AuditImage$,
|
|
2948
|
+
0]
|
|
2949
|
+
];
|
|
2950
|
+
var BodyParts = [1, n0, _BP,
|
|
2951
|
+
0, () => ProtectiveEquipmentBodyPart$
|
|
2952
|
+
];
|
|
2953
|
+
var CelebrityList = [1, n0, _CLe,
|
|
2954
|
+
0, () => Celebrity$
|
|
2955
|
+
];
|
|
2956
|
+
var CelebrityRecognitions = [1, n0, _CRe,
|
|
2957
|
+
0, () => CelebrityRecognition$
|
|
2958
|
+
];
|
|
2959
|
+
var ChallengePreferences = [1, n0, _CPh,
|
|
2960
|
+
0, () => ChallengePreference$
|
|
2961
|
+
];
|
|
2962
|
+
var ComparedFaceList = [1, n0, _CFL,
|
|
2963
|
+
0, () => ComparedFace$
|
|
2964
|
+
];
|
|
2965
|
+
var CompareFacesMatchList = [1, n0, _CFML,
|
|
2966
|
+
0, () => CompareFacesMatch$
|
|
2967
|
+
];
|
|
2968
|
+
var CompareFacesUnmatchList = [1, n0, _CFUL,
|
|
2969
|
+
0, () => ComparedFace$
|
|
2970
|
+
];
|
|
2971
|
+
var ContentModerationDetections = [1, n0, _CMDo,
|
|
2972
|
+
0, () => ContentModerationDetection$
|
|
2973
|
+
];
|
|
2974
|
+
var ContentTypes = [1, n0, _CT,
|
|
2975
|
+
0, () => ContentType$
|
|
2976
|
+
];
|
|
2977
|
+
var CustomLabels = [1, n0, _CLu,
|
|
2978
|
+
0, () => CustomLabel$
|
|
2979
|
+
];
|
|
2980
|
+
var DatasetLabelDescriptions = [1, n0, _DLDa,
|
|
2981
|
+
0, () => DatasetLabelDescription$
|
|
2982
|
+
];
|
|
2983
|
+
var DatasetMetadataList = [1, n0, _DMLa,
|
|
2984
|
+
0, () => DatasetMetadata$
|
|
2985
|
+
];
|
|
2986
|
+
var DisassociatedFacesList = [1, n0, _DFL,
|
|
2987
|
+
0, () => DisassociatedFace$
|
|
2988
|
+
];
|
|
2989
|
+
var DistributeDatasetMetadataList = [1, n0, _DDML,
|
|
2990
|
+
0, () => DistributeDataset$
|
|
2991
|
+
];
|
|
2992
|
+
var DominantColors = [1, n0, _DCo,
|
|
2993
|
+
0, () => DominantColor$
|
|
2994
|
+
];
|
|
2995
|
+
var Emotions = [1, n0, _E,
|
|
2996
|
+
0, () => Emotion$
|
|
2997
|
+
];
|
|
2998
|
+
var EquipmentDetections = [1, n0, _EDq,
|
|
2999
|
+
0, () => EquipmentDetection$
|
|
3000
|
+
];
|
|
3001
|
+
var FaceDetailList = [1, n0, _FDL,
|
|
3002
|
+
0, () => FaceDetail$
|
|
3003
|
+
];
|
|
3004
|
+
var FaceDetections = [1, n0, _FDace,
|
|
3005
|
+
0, () => FaceDetection$
|
|
3006
|
+
];
|
|
3007
|
+
var FaceList = [1, n0, _FL,
|
|
3008
|
+
0, () => Face$
|
|
3009
|
+
];
|
|
3010
|
+
var FaceMatchList = [1, n0, _FML,
|
|
3011
|
+
0, () => FaceMatch$
|
|
3012
|
+
];
|
|
3013
|
+
var FaceRecordList = [1, n0, _FRL,
|
|
3014
|
+
0, () => FaceRecord$
|
|
3015
|
+
];
|
|
3016
|
+
var Instances = [1, n0, _Inst,
|
|
3017
|
+
0, () => Instance$
|
|
3018
|
+
];
|
|
3019
|
+
var LabelAliases = [1, n0, _LAa,
|
|
3020
|
+
0, () => LabelAlias$
|
|
3021
|
+
];
|
|
3022
|
+
var LabelCategories = [1, n0, _LCa,
|
|
3023
|
+
0, () => LabelCategory$
|
|
3024
|
+
];
|
|
3025
|
+
var LabelDetections = [1, n0, _LDa,
|
|
3026
|
+
0, () => LabelDetection$
|
|
3027
|
+
];
|
|
3028
|
+
var Labels = [1, n0, _Lab,
|
|
3029
|
+
0, () => Label$
|
|
3030
|
+
];
|
|
3031
|
+
var Landmarks = [1, n0, _La,
|
|
3032
|
+
0, () => Landmark$
|
|
3033
|
+
];
|
|
3034
|
+
var MediaAnalysisJobDescriptions = [1, n0, _MAJDe,
|
|
3035
|
+
0, () => MediaAnalysisJobDescription$
|
|
3036
|
+
];
|
|
3037
|
+
var ModerationLabels = [1, n0, _MLo,
|
|
3038
|
+
0, () => ModerationLabel$
|
|
3039
|
+
];
|
|
3040
|
+
var Parents = [1, n0, _Pa,
|
|
3041
|
+
0, () => Parent$
|
|
3042
|
+
];
|
|
3043
|
+
var PersonDetections = [1, n0, _PDers,
|
|
3044
|
+
0, () => PersonDetection$
|
|
3045
|
+
];
|
|
3046
|
+
var PersonMatches = [1, n0, _PMe,
|
|
3047
|
+
0, () => PersonMatch$
|
|
3048
|
+
];
|
|
3049
|
+
var Polygon = [1, n0, _Po,
|
|
3050
|
+
0, () => Point$
|
|
3051
|
+
];
|
|
3052
|
+
var ProjectDescriptions = [1, n0, _PD,
|
|
3053
|
+
0, () => ProjectDescription$
|
|
3054
|
+
];
|
|
3055
|
+
var ProjectPolicies = [1, n0, _PPr,
|
|
3056
|
+
0, () => ProjectPolicy$
|
|
3057
|
+
];
|
|
3058
|
+
var ProjectVersionDescriptions = [1, n0, _PVD,
|
|
3059
|
+
0, () => ProjectVersionDescription$
|
|
3060
|
+
];
|
|
3061
|
+
var ProtectiveEquipmentPersons = [1, n0, _PEPr,
|
|
3062
|
+
0, () => ProtectiveEquipmentPerson$
|
|
3063
|
+
];
|
|
3064
|
+
var RegionsOfInterest = [1, n0, _ROI,
|
|
3065
|
+
0, () => RegionOfInterest$
|
|
3066
|
+
];
|
|
3067
|
+
var SegmentDetections = [1, n0, _SDeg,
|
|
3068
|
+
0, () => SegmentDetection$
|
|
3069
|
+
];
|
|
3070
|
+
var SegmentTypesInfo = [1, n0, _STIe,
|
|
3071
|
+
0, () => SegmentTypeInfo$
|
|
3072
|
+
];
|
|
3073
|
+
var StreamProcessorList = [1, n0, _SPL,
|
|
3074
|
+
0, () => StreamProcessor$
|
|
3075
|
+
];
|
|
3076
|
+
var TextDetectionList = [1, n0, _TDL,
|
|
3077
|
+
0, () => TextDetection$
|
|
3078
|
+
];
|
|
3079
|
+
var TextDetectionResults = [1, n0, _TDRext,
|
|
3080
|
+
0, () => TextDetectionResult$
|
|
3081
|
+
];
|
|
3082
|
+
var UnindexedFaces = [1, n0, _UFn,
|
|
3083
|
+
0, () => UnindexedFace$
|
|
3084
|
+
];
|
|
3085
|
+
var UnsearchedFacesList = [1, n0, _UFL,
|
|
3086
|
+
0, () => UnsearchedFace$
|
|
3087
|
+
];
|
|
3088
|
+
var UnsuccessfulFaceAssociationList = [1, n0, _UFAL,
|
|
3089
|
+
0, () => UnsuccessfulFaceAssociation$
|
|
3090
|
+
];
|
|
3091
|
+
var UnsuccessfulFaceDeletionsList = [1, n0, _UFDL,
|
|
3092
|
+
0, () => UnsuccessfulFaceDeletion$
|
|
3093
|
+
];
|
|
3094
|
+
var UnsuccessfulFaceDisassociationList = [1, n0, _UFDLn,
|
|
3095
|
+
0, () => UnsuccessfulFaceDisassociation$
|
|
3096
|
+
];
|
|
3097
|
+
var UserList = [1, n0, _UL,
|
|
3098
|
+
0, () => User$
|
|
3099
|
+
];
|
|
3100
|
+
var UserMatchList = [1, n0, _UML,
|
|
3101
|
+
0, () => UserMatch$
|
|
3102
|
+
];
|
|
3103
|
+
var VideoMetadataList = [1, n0, _VML,
|
|
3104
|
+
0, () => VideoMetadata$
|
|
3105
|
+
];
|
|
3106
|
+
var AssociateFaces$ = [9, n0, _AFss,
|
|
3107
|
+
0, () => AssociateFacesRequest$, () => AssociateFacesResponse$
|
|
3108
|
+
];
|
|
3109
|
+
var CompareFaces$ = [9, n0, _CFo,
|
|
3110
|
+
0, () => CompareFacesRequest$, () => CompareFacesResponse$
|
|
3111
|
+
];
|
|
3112
|
+
var CopyProjectVersion$ = [9, n0, _CPV,
|
|
3113
|
+
0, () => CopyProjectVersionRequest$, () => CopyProjectVersionResponse$
|
|
3114
|
+
];
|
|
3115
|
+
var CreateCollection$ = [9, n0, _CCr,
|
|
3116
|
+
0, () => CreateCollectionRequest$, () => CreateCollectionResponse$
|
|
3117
|
+
];
|
|
3118
|
+
var CreateDataset$ = [9, n0, _CDr,
|
|
3119
|
+
0, () => CreateDatasetRequest$, () => CreateDatasetResponse$
|
|
3120
|
+
];
|
|
3121
|
+
var CreateFaceLivenessSession$ = [9, n0, _CFLS,
|
|
3122
|
+
2, () => CreateFaceLivenessSessionRequest$, () => CreateFaceLivenessSessionResponse$
|
|
3123
|
+
];
|
|
3124
|
+
var CreateProject$ = [9, n0, _CPr,
|
|
3125
|
+
0, () => CreateProjectRequest$, () => CreateProjectResponse$
|
|
3126
|
+
];
|
|
3127
|
+
var CreateProjectVersion$ = [9, n0, _CPVr,
|
|
3128
|
+
0, () => CreateProjectVersionRequest$, () => CreateProjectVersionResponse$
|
|
3129
|
+
];
|
|
3130
|
+
var CreateStreamProcessor$ = [9, n0, _CSP,
|
|
3131
|
+
0, () => CreateStreamProcessorRequest$, () => CreateStreamProcessorResponse$
|
|
3132
|
+
];
|
|
3133
|
+
var CreateUser$ = [9, n0, _CU,
|
|
3134
|
+
0, () => CreateUserRequest$, () => CreateUserResponse$
|
|
3135
|
+
];
|
|
3136
|
+
var DeleteCollection$ = [9, n0, _DCe,
|
|
3137
|
+
0, () => DeleteCollectionRequest$, () => DeleteCollectionResponse$
|
|
3138
|
+
];
|
|
3139
|
+
var DeleteDataset$ = [9, n0, _DDe,
|
|
3140
|
+
0, () => DeleteDatasetRequest$, () => DeleteDatasetResponse$
|
|
3141
|
+
];
|
|
3142
|
+
var DeleteFaces$ = [9, n0, _DFel,
|
|
3143
|
+
0, () => DeleteFacesRequest$, () => DeleteFacesResponse$
|
|
3144
|
+
];
|
|
3145
|
+
var DeleteProject$ = [9, n0, _DP,
|
|
3146
|
+
0, () => DeleteProjectRequest$, () => DeleteProjectResponse$
|
|
3147
|
+
];
|
|
3148
|
+
var DeleteProjectPolicy$ = [9, n0, _DPP,
|
|
3149
|
+
0, () => DeleteProjectPolicyRequest$, () => DeleteProjectPolicyResponse$
|
|
3150
|
+
];
|
|
3151
|
+
var DeleteProjectVersion$ = [9, n0, _DPV,
|
|
3152
|
+
0, () => DeleteProjectVersionRequest$, () => DeleteProjectVersionResponse$
|
|
3153
|
+
];
|
|
3154
|
+
var DeleteStreamProcessor$ = [9, n0, _DSPe,
|
|
3155
|
+
0, () => DeleteStreamProcessorRequest$, () => DeleteStreamProcessorResponse$
|
|
3156
|
+
];
|
|
3157
|
+
var DeleteUser$ = [9, n0, _DU,
|
|
3158
|
+
0, () => DeleteUserRequest$, () => DeleteUserResponse$
|
|
3159
|
+
];
|
|
3160
|
+
var DescribeCollection$ = [9, n0, _DCes,
|
|
3161
|
+
0, () => DescribeCollectionRequest$, () => DescribeCollectionResponse$
|
|
3162
|
+
];
|
|
3163
|
+
var DescribeDataset$ = [9, n0, _DDes,
|
|
3164
|
+
0, () => DescribeDatasetRequest$, () => DescribeDatasetResponse$
|
|
3165
|
+
];
|
|
3166
|
+
var DescribeProjects$ = [9, n0, _DPe,
|
|
3167
|
+
0, () => DescribeProjectsRequest$, () => DescribeProjectsResponse$
|
|
3168
|
+
];
|
|
3169
|
+
var DescribeProjectVersions$ = [9, n0, _DPVe,
|
|
3170
|
+
0, () => DescribeProjectVersionsRequest$, () => DescribeProjectVersionsResponse$
|
|
3171
|
+
];
|
|
3172
|
+
var DescribeStreamProcessor$ = [9, n0, _DSPes,
|
|
3173
|
+
0, () => DescribeStreamProcessorRequest$, () => DescribeStreamProcessorResponse$
|
|
3174
|
+
];
|
|
3175
|
+
var DetectCustomLabels$ = [9, n0, _DCL,
|
|
3176
|
+
0, () => DetectCustomLabelsRequest$, () => DetectCustomLabelsResponse$
|
|
3177
|
+
];
|
|
3178
|
+
var DetectFaces$ = [9, n0, _DFet,
|
|
3179
|
+
0, () => DetectFacesRequest$, () => DetectFacesResponse$
|
|
3180
|
+
];
|
|
3181
|
+
var DetectLabels$ = [9, n0, _DL,
|
|
3182
|
+
0, () => DetectLabelsRequest$, () => DetectLabelsResponse$
|
|
3183
|
+
];
|
|
3184
|
+
var DetectModerationLabels$ = [9, n0, _DML,
|
|
3185
|
+
0, () => DetectModerationLabelsRequest$, () => DetectModerationLabelsResponse$
|
|
3186
|
+
];
|
|
3187
|
+
var DetectProtectiveEquipment$ = [9, n0, _DPE,
|
|
3188
|
+
0, () => DetectProtectiveEquipmentRequest$, () => DetectProtectiveEquipmentResponse$
|
|
3189
|
+
];
|
|
3190
|
+
var DetectText$ = [9, n0, _DTet,
|
|
3191
|
+
0, () => DetectTextRequest$, () => DetectTextResponse$
|
|
3192
|
+
];
|
|
3193
|
+
var DisassociateFaces$ = [9, n0, _DFisa,
|
|
3194
|
+
0, () => DisassociateFacesRequest$, () => DisassociateFacesResponse$
|
|
3195
|
+
];
|
|
3196
|
+
var DistributeDatasetEntries$ = [9, n0, _DDE,
|
|
3197
|
+
0, () => DistributeDatasetEntriesRequest$, () => DistributeDatasetEntriesResponse$
|
|
3198
|
+
];
|
|
3199
|
+
var GetCelebrityInfo$ = [9, n0, _GCI,
|
|
3200
|
+
0, () => GetCelebrityInfoRequest$, () => GetCelebrityInfoResponse$
|
|
3201
|
+
];
|
|
3202
|
+
var GetCelebrityRecognition$ = [9, n0, _GCR,
|
|
3203
|
+
0, () => GetCelebrityRecognitionRequest$, () => GetCelebrityRecognitionResponse$
|
|
3204
|
+
];
|
|
3205
|
+
var GetContentModeration$ = [9, n0, _GCM,
|
|
3206
|
+
0, () => GetContentModerationRequest$, () => GetContentModerationResponse$
|
|
3207
|
+
];
|
|
3208
|
+
var GetFaceDetection$ = [9, n0, _GFD,
|
|
3209
|
+
0, () => GetFaceDetectionRequest$, () => GetFaceDetectionResponse$
|
|
3210
|
+
];
|
|
3211
|
+
var GetFaceLivenessSessionResults$ = [9, n0, _GFLSR,
|
|
3212
|
+
0, () => GetFaceLivenessSessionResultsRequest$, () => GetFaceLivenessSessionResultsResponse$
|
|
3213
|
+
];
|
|
3214
|
+
var GetFaceSearch$ = [9, n0, _GFS,
|
|
3215
|
+
0, () => GetFaceSearchRequest$, () => GetFaceSearchResponse$
|
|
3216
|
+
];
|
|
3217
|
+
var GetLabelDetection$ = [9, n0, _GLD,
|
|
3218
|
+
0, () => GetLabelDetectionRequest$, () => GetLabelDetectionResponse$
|
|
3219
|
+
];
|
|
3220
|
+
var GetMediaAnalysisJob$ = [9, n0, _GMAJ,
|
|
3221
|
+
0, () => GetMediaAnalysisJobRequest$, () => GetMediaAnalysisJobResponse$
|
|
3222
|
+
];
|
|
3223
|
+
var GetPersonTracking$ = [9, n0, _GPT,
|
|
3224
|
+
0, () => GetPersonTrackingRequest$, () => GetPersonTrackingResponse$
|
|
3225
|
+
];
|
|
3226
|
+
var GetSegmentDetection$ = [9, n0, _GSD,
|
|
3227
|
+
0, () => GetSegmentDetectionRequest$, () => GetSegmentDetectionResponse$
|
|
3228
|
+
];
|
|
3229
|
+
var GetTextDetection$ = [9, n0, _GTD,
|
|
3230
|
+
0, () => GetTextDetectionRequest$, () => GetTextDetectionResponse$
|
|
3231
|
+
];
|
|
3232
|
+
var IndexFaces$ = [9, n0, _IF,
|
|
3233
|
+
0, () => IndexFacesRequest$, () => IndexFacesResponse$
|
|
3234
|
+
];
|
|
3235
|
+
var ListCollections$ = [9, n0, _LCi,
|
|
3236
|
+
0, () => ListCollectionsRequest$, () => ListCollectionsResponse$
|
|
3237
|
+
];
|
|
3238
|
+
var ListDatasetEntries$ = [9, n0, _LDE,
|
|
3239
|
+
0, () => ListDatasetEntriesRequest$, () => ListDatasetEntriesResponse$
|
|
3240
|
+
];
|
|
3241
|
+
var ListDatasetLabels$ = [9, n0, _LDL,
|
|
3242
|
+
0, () => ListDatasetLabelsRequest$, () => ListDatasetLabelsResponse$
|
|
3243
|
+
];
|
|
3244
|
+
var ListFaces$ = [9, n0, _LF,
|
|
3245
|
+
0, () => ListFacesRequest$, () => ListFacesResponse$
|
|
3246
|
+
];
|
|
3247
|
+
var ListMediaAnalysisJobs$ = [9, n0, _LMAJ,
|
|
3248
|
+
0, () => ListMediaAnalysisJobsRequest$, () => ListMediaAnalysisJobsResponse$
|
|
3249
|
+
];
|
|
3250
|
+
var ListProjectPolicies$ = [9, n0, _LPP,
|
|
3251
|
+
0, () => ListProjectPoliciesRequest$, () => ListProjectPoliciesResponse$
|
|
3252
|
+
];
|
|
3253
|
+
var ListStreamProcessors$ = [9, n0, _LSP,
|
|
3254
|
+
0, () => ListStreamProcessorsRequest$, () => ListStreamProcessorsResponse$
|
|
3255
|
+
];
|
|
3256
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3257
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3258
|
+
];
|
|
3259
|
+
var ListUsers$ = [9, n0, _LU,
|
|
3260
|
+
0, () => ListUsersRequest$, () => ListUsersResponse$
|
|
3261
|
+
];
|
|
3262
|
+
var PutProjectPolicy$ = [9, n0, _PPP,
|
|
3263
|
+
0, () => PutProjectPolicyRequest$, () => PutProjectPolicyResponse$
|
|
3264
|
+
];
|
|
3265
|
+
var RecognizeCelebrities$ = [9, n0, _RC,
|
|
3266
|
+
0, () => RecognizeCelebritiesRequest$, () => RecognizeCelebritiesResponse$
|
|
3267
|
+
];
|
|
3268
|
+
var SearchFaces$ = [9, n0, _SFe,
|
|
3269
|
+
0, () => SearchFacesRequest$, () => SearchFacesResponse$
|
|
3270
|
+
];
|
|
3271
|
+
var SearchFacesByImage$ = [9, n0, _SFBI,
|
|
3272
|
+
0, () => SearchFacesByImageRequest$, () => SearchFacesByImageResponse$
|
|
3273
|
+
];
|
|
3274
|
+
var SearchUsers$ = [9, n0, _SUe,
|
|
3275
|
+
0, () => SearchUsersRequest$, () => SearchUsersResponse$
|
|
3276
|
+
];
|
|
3277
|
+
var SearchUsersByImage$ = [9, n0, _SUBI,
|
|
3278
|
+
0, () => SearchUsersByImageRequest$, () => SearchUsersByImageResponse$
|
|
3279
|
+
];
|
|
3280
|
+
var StartCelebrityRecognition$ = [9, n0, _SCR,
|
|
3281
|
+
2, () => StartCelebrityRecognitionRequest$, () => StartCelebrityRecognitionResponse$
|
|
3282
|
+
];
|
|
3283
|
+
var StartContentModeration$ = [9, n0, _SCM,
|
|
3284
|
+
2, () => StartContentModerationRequest$, () => StartContentModerationResponse$
|
|
3285
|
+
];
|
|
3286
|
+
var StartFaceDetection$ = [9, n0, _SFDt,
|
|
3287
|
+
2, () => StartFaceDetectionRequest$, () => StartFaceDetectionResponse$
|
|
3288
|
+
];
|
|
3289
|
+
var StartFaceSearch$ = [9, n0, _SFS,
|
|
3290
|
+
2, () => StartFaceSearchRequest$, () => StartFaceSearchResponse$
|
|
3291
|
+
];
|
|
3292
|
+
var StartLabelDetection$ = [9, n0, _SLD,
|
|
3293
|
+
2, () => StartLabelDetectionRequest$, () => StartLabelDetectionResponse$
|
|
3294
|
+
];
|
|
3295
|
+
var StartMediaAnalysisJob$ = [9, n0, _SMAJ,
|
|
3296
|
+
2, () => StartMediaAnalysisJobRequest$, () => StartMediaAnalysisJobResponse$
|
|
3297
|
+
];
|
|
3298
|
+
var StartPersonTracking$ = [9, n0, _SPT,
|
|
3299
|
+
2, () => StartPersonTrackingRequest$, () => StartPersonTrackingResponse$
|
|
3300
|
+
];
|
|
3301
|
+
var StartProjectVersion$ = [9, n0, _SPV,
|
|
3302
|
+
0, () => StartProjectVersionRequest$, () => StartProjectVersionResponse$
|
|
3303
|
+
];
|
|
3304
|
+
var StartSegmentDetection$ = [9, n0, _SSD,
|
|
3305
|
+
2, () => StartSegmentDetectionRequest$, () => StartSegmentDetectionResponse$
|
|
3306
|
+
];
|
|
3307
|
+
var StartStreamProcessor$ = [9, n0, _SSP,
|
|
3308
|
+
0, () => StartStreamProcessorRequest$, () => StartStreamProcessorResponse$
|
|
3309
|
+
];
|
|
3310
|
+
var StartTextDetection$ = [9, n0, _STD,
|
|
3311
|
+
2, () => StartTextDetectionRequest$, () => StartTextDetectionResponse$
|
|
3312
|
+
];
|
|
3313
|
+
var StopProjectVersion$ = [9, n0, _SPVt,
|
|
3314
|
+
0, () => StopProjectVersionRequest$, () => StopProjectVersionResponse$
|
|
3315
|
+
];
|
|
3316
|
+
var StopStreamProcessor$ = [9, n0, _SSPt,
|
|
3317
|
+
0, () => StopStreamProcessorRequest$, () => StopStreamProcessorResponse$
|
|
3318
|
+
];
|
|
3319
|
+
var TagResource$ = [9, n0, _TR,
|
|
3320
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
3321
|
+
];
|
|
3322
|
+
var UntagResource$ = [9, n0, _UR,
|
|
3323
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
3324
|
+
];
|
|
3325
|
+
var UpdateDatasetEntries$ = [9, n0, _UDE,
|
|
3326
|
+
0, () => UpdateDatasetEntriesRequest$, () => UpdateDatasetEntriesResponse$
|
|
3327
|
+
];
|
|
3328
|
+
var UpdateStreamProcessor$ = [9, n0, _USP,
|
|
3329
|
+
0, () => UpdateStreamProcessorRequest$, () => UpdateStreamProcessorResponse$
|
|
3330
|
+
];
|
|
3331
|
+
|
|
3332
|
+
const getRuntimeConfig$1 = (config) => {
|
|
3333
|
+
return {
|
|
3334
|
+
apiVersion: "2016-06-27",
|
|
3335
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
3336
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
3337
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
3338
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
3339
|
+
extensions: config?.extensions ?? [],
|
|
3340
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRekognitionHttpAuthSchemeProvider,
|
|
3341
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
3342
|
+
{
|
|
3343
|
+
schemeId: "aws.auth#sigv4",
|
|
3344
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
3345
|
+
signer: new AwsSdkSigV4Signer(),
|
|
3346
|
+
},
|
|
3347
|
+
],
|
|
3348
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
3349
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
3350
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
3351
|
+
defaultNamespace: "com.amazonaws.rekognition",
|
|
3352
|
+
errorTypeRegistries,
|
|
3353
|
+
version: "2016-06-27",
|
|
3354
|
+
serviceTarget: "RekognitionService",
|
|
3355
|
+
},
|
|
3356
|
+
serviceId: config?.serviceId ?? "Rekognition",
|
|
3357
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
3358
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
3359
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
3360
|
+
};
|
|
3361
|
+
};
|
|
3362
|
+
|
|
3363
|
+
const getRuntimeConfig = (config) => {
|
|
3364
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
3365
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
3366
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
3367
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
3368
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
3369
|
+
const loaderConfig = {
|
|
3370
|
+
profile: config?.profile,
|
|
3371
|
+
logger: clientSharedValues.logger,
|
|
3372
|
+
};
|
|
3373
|
+
return {
|
|
3374
|
+
...clientSharedValues,
|
|
3375
|
+
...config,
|
|
3376
|
+
runtime: "node",
|
|
3377
|
+
defaultsMode,
|
|
3378
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
3379
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
3380
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
3381
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
3382
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
3383
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
3384
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
3385
|
+
retryMode: config?.retryMode ??
|
|
3386
|
+
loadConfig({
|
|
3387
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
3388
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
3389
|
+
}, config),
|
|
3390
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
3391
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
3392
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3393
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3394
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
3395
|
+
};
|
|
3396
|
+
};
|
|
3397
|
+
|
|
34
3398
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
3399
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
3400
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1547,127 +4911,551 @@ const StreamProcessorParameterToDelete = {
|
|
|
1547
4911
|
RegionsOfInterest: "RegionsOfInterest",
|
|
1548
4912
|
};
|
|
1549
4913
|
|
|
4914
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4915
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
4916
|
+
exports.AgeRange$ = AgeRange$;
|
|
4917
|
+
exports.Asset$ = Asset$;
|
|
4918
|
+
exports.AssociateFaces$ = AssociateFaces$;
|
|
1550
4919
|
exports.AssociateFacesCommand = AssociateFacesCommand;
|
|
4920
|
+
exports.AssociateFacesRequest$ = AssociateFacesRequest$;
|
|
4921
|
+
exports.AssociateFacesResponse$ = AssociateFacesResponse$;
|
|
4922
|
+
exports.AssociatedFace$ = AssociatedFace$;
|
|
1551
4923
|
exports.Attribute = Attribute;
|
|
4924
|
+
exports.AudioMetadata$ = AudioMetadata$;
|
|
4925
|
+
exports.AuditImage$ = AuditImage$;
|
|
4926
|
+
exports.Beard$ = Beard$;
|
|
4927
|
+
exports.BlackFrame$ = BlackFrame$;
|
|
1552
4928
|
exports.BodyPart = BodyPart;
|
|
4929
|
+
exports.BoundingBox$ = BoundingBox$;
|
|
4930
|
+
exports.Celebrity$ = Celebrity$;
|
|
4931
|
+
exports.CelebrityDetail$ = CelebrityDetail$;
|
|
4932
|
+
exports.CelebrityRecognition$ = CelebrityRecognition$;
|
|
1553
4933
|
exports.CelebrityRecognitionSortBy = CelebrityRecognitionSortBy;
|
|
4934
|
+
exports.Challenge$ = Challenge$;
|
|
4935
|
+
exports.ChallengePreference$ = ChallengePreference$;
|
|
1554
4936
|
exports.ChallengeType = ChallengeType;
|
|
4937
|
+
exports.CompareFaces$ = CompareFaces$;
|
|
1555
4938
|
exports.CompareFacesCommand = CompareFacesCommand;
|
|
4939
|
+
exports.CompareFacesMatch$ = CompareFacesMatch$;
|
|
4940
|
+
exports.CompareFacesRequest$ = CompareFacesRequest$;
|
|
4941
|
+
exports.CompareFacesResponse$ = CompareFacesResponse$;
|
|
4942
|
+
exports.ComparedFace$ = ComparedFace$;
|
|
4943
|
+
exports.ComparedSourceImageFace$ = ComparedSourceImageFace$;
|
|
4944
|
+
exports.ConflictException = ConflictException;
|
|
4945
|
+
exports.ConflictException$ = ConflictException$;
|
|
4946
|
+
exports.ConnectedHomeSettings$ = ConnectedHomeSettings$;
|
|
4947
|
+
exports.ConnectedHomeSettingsForUpdate$ = ConnectedHomeSettingsForUpdate$;
|
|
1556
4948
|
exports.ContentClassifier = ContentClassifier;
|
|
1557
4949
|
exports.ContentModerationAggregateBy = ContentModerationAggregateBy;
|
|
4950
|
+
exports.ContentModerationDetection$ = ContentModerationDetection$;
|
|
1558
4951
|
exports.ContentModerationSortBy = ContentModerationSortBy;
|
|
4952
|
+
exports.ContentType$ = ContentType$;
|
|
4953
|
+
exports.CopyProjectVersion$ = CopyProjectVersion$;
|
|
1559
4954
|
exports.CopyProjectVersionCommand = CopyProjectVersionCommand;
|
|
4955
|
+
exports.CopyProjectVersionRequest$ = CopyProjectVersionRequest$;
|
|
4956
|
+
exports.CopyProjectVersionResponse$ = CopyProjectVersionResponse$;
|
|
4957
|
+
exports.CoversBodyPart$ = CoversBodyPart$;
|
|
4958
|
+
exports.CreateCollection$ = CreateCollection$;
|
|
1560
4959
|
exports.CreateCollectionCommand = CreateCollectionCommand;
|
|
4960
|
+
exports.CreateCollectionRequest$ = CreateCollectionRequest$;
|
|
4961
|
+
exports.CreateCollectionResponse$ = CreateCollectionResponse$;
|
|
4962
|
+
exports.CreateDataset$ = CreateDataset$;
|
|
1561
4963
|
exports.CreateDatasetCommand = CreateDatasetCommand;
|
|
4964
|
+
exports.CreateDatasetRequest$ = CreateDatasetRequest$;
|
|
4965
|
+
exports.CreateDatasetResponse$ = CreateDatasetResponse$;
|
|
4966
|
+
exports.CreateFaceLivenessSession$ = CreateFaceLivenessSession$;
|
|
1562
4967
|
exports.CreateFaceLivenessSessionCommand = CreateFaceLivenessSessionCommand;
|
|
4968
|
+
exports.CreateFaceLivenessSessionRequest$ = CreateFaceLivenessSessionRequest$;
|
|
4969
|
+
exports.CreateFaceLivenessSessionRequestSettings$ = CreateFaceLivenessSessionRequestSettings$;
|
|
4970
|
+
exports.CreateFaceLivenessSessionResponse$ = CreateFaceLivenessSessionResponse$;
|
|
4971
|
+
exports.CreateProject$ = CreateProject$;
|
|
1563
4972
|
exports.CreateProjectCommand = CreateProjectCommand;
|
|
4973
|
+
exports.CreateProjectRequest$ = CreateProjectRequest$;
|
|
4974
|
+
exports.CreateProjectResponse$ = CreateProjectResponse$;
|
|
4975
|
+
exports.CreateProjectVersion$ = CreateProjectVersion$;
|
|
1564
4976
|
exports.CreateProjectVersionCommand = CreateProjectVersionCommand;
|
|
4977
|
+
exports.CreateProjectVersionRequest$ = CreateProjectVersionRequest$;
|
|
4978
|
+
exports.CreateProjectVersionResponse$ = CreateProjectVersionResponse$;
|
|
4979
|
+
exports.CreateStreamProcessor$ = CreateStreamProcessor$;
|
|
1565
4980
|
exports.CreateStreamProcessorCommand = CreateStreamProcessorCommand;
|
|
4981
|
+
exports.CreateStreamProcessorRequest$ = CreateStreamProcessorRequest$;
|
|
4982
|
+
exports.CreateStreamProcessorResponse$ = CreateStreamProcessorResponse$;
|
|
4983
|
+
exports.CreateUser$ = CreateUser$;
|
|
1566
4984
|
exports.CreateUserCommand = CreateUserCommand;
|
|
4985
|
+
exports.CreateUserRequest$ = CreateUserRequest$;
|
|
4986
|
+
exports.CreateUserResponse$ = CreateUserResponse$;
|
|
4987
|
+
exports.CustomLabel$ = CustomLabel$;
|
|
1567
4988
|
exports.CustomizationFeature = CustomizationFeature;
|
|
4989
|
+
exports.CustomizationFeatureConfig$ = CustomizationFeatureConfig$;
|
|
4990
|
+
exports.CustomizationFeatureContentModerationConfig$ = CustomizationFeatureContentModerationConfig$;
|
|
4991
|
+
exports.DatasetChanges$ = DatasetChanges$;
|
|
4992
|
+
exports.DatasetDescription$ = DatasetDescription$;
|
|
4993
|
+
exports.DatasetLabelDescription$ = DatasetLabelDescription$;
|
|
4994
|
+
exports.DatasetLabelStats$ = DatasetLabelStats$;
|
|
4995
|
+
exports.DatasetMetadata$ = DatasetMetadata$;
|
|
4996
|
+
exports.DatasetSource$ = DatasetSource$;
|
|
4997
|
+
exports.DatasetStats$ = DatasetStats$;
|
|
1568
4998
|
exports.DatasetStatus = DatasetStatus;
|
|
1569
4999
|
exports.DatasetStatusMessageCode = DatasetStatusMessageCode;
|
|
1570
5000
|
exports.DatasetType = DatasetType;
|
|
5001
|
+
exports.DeleteCollection$ = DeleteCollection$;
|
|
1571
5002
|
exports.DeleteCollectionCommand = DeleteCollectionCommand;
|
|
5003
|
+
exports.DeleteCollectionRequest$ = DeleteCollectionRequest$;
|
|
5004
|
+
exports.DeleteCollectionResponse$ = DeleteCollectionResponse$;
|
|
5005
|
+
exports.DeleteDataset$ = DeleteDataset$;
|
|
1572
5006
|
exports.DeleteDatasetCommand = DeleteDatasetCommand;
|
|
5007
|
+
exports.DeleteDatasetRequest$ = DeleteDatasetRequest$;
|
|
5008
|
+
exports.DeleteDatasetResponse$ = DeleteDatasetResponse$;
|
|
5009
|
+
exports.DeleteFaces$ = DeleteFaces$;
|
|
1573
5010
|
exports.DeleteFacesCommand = DeleteFacesCommand;
|
|
5011
|
+
exports.DeleteFacesRequest$ = DeleteFacesRequest$;
|
|
5012
|
+
exports.DeleteFacesResponse$ = DeleteFacesResponse$;
|
|
5013
|
+
exports.DeleteProject$ = DeleteProject$;
|
|
1574
5014
|
exports.DeleteProjectCommand = DeleteProjectCommand;
|
|
5015
|
+
exports.DeleteProjectPolicy$ = DeleteProjectPolicy$;
|
|
1575
5016
|
exports.DeleteProjectPolicyCommand = DeleteProjectPolicyCommand;
|
|
5017
|
+
exports.DeleteProjectPolicyRequest$ = DeleteProjectPolicyRequest$;
|
|
5018
|
+
exports.DeleteProjectPolicyResponse$ = DeleteProjectPolicyResponse$;
|
|
5019
|
+
exports.DeleteProjectRequest$ = DeleteProjectRequest$;
|
|
5020
|
+
exports.DeleteProjectResponse$ = DeleteProjectResponse$;
|
|
5021
|
+
exports.DeleteProjectVersion$ = DeleteProjectVersion$;
|
|
1576
5022
|
exports.DeleteProjectVersionCommand = DeleteProjectVersionCommand;
|
|
5023
|
+
exports.DeleteProjectVersionRequest$ = DeleteProjectVersionRequest$;
|
|
5024
|
+
exports.DeleteProjectVersionResponse$ = DeleteProjectVersionResponse$;
|
|
5025
|
+
exports.DeleteStreamProcessor$ = DeleteStreamProcessor$;
|
|
1577
5026
|
exports.DeleteStreamProcessorCommand = DeleteStreamProcessorCommand;
|
|
5027
|
+
exports.DeleteStreamProcessorRequest$ = DeleteStreamProcessorRequest$;
|
|
5028
|
+
exports.DeleteStreamProcessorResponse$ = DeleteStreamProcessorResponse$;
|
|
5029
|
+
exports.DeleteUser$ = DeleteUser$;
|
|
1578
5030
|
exports.DeleteUserCommand = DeleteUserCommand;
|
|
5031
|
+
exports.DeleteUserRequest$ = DeleteUserRequest$;
|
|
5032
|
+
exports.DeleteUserResponse$ = DeleteUserResponse$;
|
|
5033
|
+
exports.DescribeCollection$ = DescribeCollection$;
|
|
1579
5034
|
exports.DescribeCollectionCommand = DescribeCollectionCommand;
|
|
5035
|
+
exports.DescribeCollectionRequest$ = DescribeCollectionRequest$;
|
|
5036
|
+
exports.DescribeCollectionResponse$ = DescribeCollectionResponse$;
|
|
5037
|
+
exports.DescribeDataset$ = DescribeDataset$;
|
|
1580
5038
|
exports.DescribeDatasetCommand = DescribeDatasetCommand;
|
|
5039
|
+
exports.DescribeDatasetRequest$ = DescribeDatasetRequest$;
|
|
5040
|
+
exports.DescribeDatasetResponse$ = DescribeDatasetResponse$;
|
|
5041
|
+
exports.DescribeProjectVersions$ = DescribeProjectVersions$;
|
|
1581
5042
|
exports.DescribeProjectVersionsCommand = DescribeProjectVersionsCommand;
|
|
5043
|
+
exports.DescribeProjectVersionsRequest$ = DescribeProjectVersionsRequest$;
|
|
5044
|
+
exports.DescribeProjectVersionsResponse$ = DescribeProjectVersionsResponse$;
|
|
5045
|
+
exports.DescribeProjects$ = DescribeProjects$;
|
|
1582
5046
|
exports.DescribeProjectsCommand = DescribeProjectsCommand;
|
|
5047
|
+
exports.DescribeProjectsRequest$ = DescribeProjectsRequest$;
|
|
5048
|
+
exports.DescribeProjectsResponse$ = DescribeProjectsResponse$;
|
|
5049
|
+
exports.DescribeStreamProcessor$ = DescribeStreamProcessor$;
|
|
1583
5050
|
exports.DescribeStreamProcessorCommand = DescribeStreamProcessorCommand;
|
|
5051
|
+
exports.DescribeStreamProcessorRequest$ = DescribeStreamProcessorRequest$;
|
|
5052
|
+
exports.DescribeStreamProcessorResponse$ = DescribeStreamProcessorResponse$;
|
|
5053
|
+
exports.DetectCustomLabels$ = DetectCustomLabels$;
|
|
1584
5054
|
exports.DetectCustomLabelsCommand = DetectCustomLabelsCommand;
|
|
5055
|
+
exports.DetectCustomLabelsRequest$ = DetectCustomLabelsRequest$;
|
|
5056
|
+
exports.DetectCustomLabelsResponse$ = DetectCustomLabelsResponse$;
|
|
5057
|
+
exports.DetectFaces$ = DetectFaces$;
|
|
1585
5058
|
exports.DetectFacesCommand = DetectFacesCommand;
|
|
5059
|
+
exports.DetectFacesRequest$ = DetectFacesRequest$;
|
|
5060
|
+
exports.DetectFacesResponse$ = DetectFacesResponse$;
|
|
5061
|
+
exports.DetectLabels$ = DetectLabels$;
|
|
1586
5062
|
exports.DetectLabelsCommand = DetectLabelsCommand;
|
|
1587
5063
|
exports.DetectLabelsFeatureName = DetectLabelsFeatureName;
|
|
5064
|
+
exports.DetectLabelsImageBackground$ = DetectLabelsImageBackground$;
|
|
5065
|
+
exports.DetectLabelsImageForeground$ = DetectLabelsImageForeground$;
|
|
5066
|
+
exports.DetectLabelsImageProperties$ = DetectLabelsImageProperties$;
|
|
5067
|
+
exports.DetectLabelsImagePropertiesSettings$ = DetectLabelsImagePropertiesSettings$;
|
|
5068
|
+
exports.DetectLabelsImageQuality$ = DetectLabelsImageQuality$;
|
|
5069
|
+
exports.DetectLabelsRequest$ = DetectLabelsRequest$;
|
|
5070
|
+
exports.DetectLabelsResponse$ = DetectLabelsResponse$;
|
|
5071
|
+
exports.DetectLabelsSettings$ = DetectLabelsSettings$;
|
|
5072
|
+
exports.DetectModerationLabels$ = DetectModerationLabels$;
|
|
1588
5073
|
exports.DetectModerationLabelsCommand = DetectModerationLabelsCommand;
|
|
5074
|
+
exports.DetectModerationLabelsRequest$ = DetectModerationLabelsRequest$;
|
|
5075
|
+
exports.DetectModerationLabelsResponse$ = DetectModerationLabelsResponse$;
|
|
5076
|
+
exports.DetectProtectiveEquipment$ = DetectProtectiveEquipment$;
|
|
1589
5077
|
exports.DetectProtectiveEquipmentCommand = DetectProtectiveEquipmentCommand;
|
|
5078
|
+
exports.DetectProtectiveEquipmentRequest$ = DetectProtectiveEquipmentRequest$;
|
|
5079
|
+
exports.DetectProtectiveEquipmentResponse$ = DetectProtectiveEquipmentResponse$;
|
|
5080
|
+
exports.DetectText$ = DetectText$;
|
|
1590
5081
|
exports.DetectTextCommand = DetectTextCommand;
|
|
5082
|
+
exports.DetectTextFilters$ = DetectTextFilters$;
|
|
5083
|
+
exports.DetectTextRequest$ = DetectTextRequest$;
|
|
5084
|
+
exports.DetectTextResponse$ = DetectTextResponse$;
|
|
5085
|
+
exports.DetectionFilter$ = DetectionFilter$;
|
|
5086
|
+
exports.DisassociateFaces$ = DisassociateFaces$;
|
|
1591
5087
|
exports.DisassociateFacesCommand = DisassociateFacesCommand;
|
|
5088
|
+
exports.DisassociateFacesRequest$ = DisassociateFacesRequest$;
|
|
5089
|
+
exports.DisassociateFacesResponse$ = DisassociateFacesResponse$;
|
|
5090
|
+
exports.DisassociatedFace$ = DisassociatedFace$;
|
|
5091
|
+
exports.DistributeDataset$ = DistributeDataset$;
|
|
5092
|
+
exports.DistributeDatasetEntries$ = DistributeDatasetEntries$;
|
|
1592
5093
|
exports.DistributeDatasetEntriesCommand = DistributeDatasetEntriesCommand;
|
|
5094
|
+
exports.DistributeDatasetEntriesRequest$ = DistributeDatasetEntriesRequest$;
|
|
5095
|
+
exports.DistributeDatasetEntriesResponse$ = DistributeDatasetEntriesResponse$;
|
|
5096
|
+
exports.DominantColor$ = DominantColor$;
|
|
5097
|
+
exports.Emotion$ = Emotion$;
|
|
1593
5098
|
exports.EmotionName = EmotionName;
|
|
5099
|
+
exports.EquipmentDetection$ = EquipmentDetection$;
|
|
5100
|
+
exports.EvaluationResult$ = EvaluationResult$;
|
|
5101
|
+
exports.EyeDirection$ = EyeDirection$;
|
|
5102
|
+
exports.EyeOpen$ = EyeOpen$;
|
|
5103
|
+
exports.Eyeglasses$ = Eyeglasses$;
|
|
5104
|
+
exports.Face$ = Face$;
|
|
1594
5105
|
exports.FaceAttributes = FaceAttributes;
|
|
5106
|
+
exports.FaceDetail$ = FaceDetail$;
|
|
5107
|
+
exports.FaceDetection$ = FaceDetection$;
|
|
5108
|
+
exports.FaceMatch$ = FaceMatch$;
|
|
5109
|
+
exports.FaceOccluded$ = FaceOccluded$;
|
|
5110
|
+
exports.FaceRecord$ = FaceRecord$;
|
|
5111
|
+
exports.FaceSearchSettings$ = FaceSearchSettings$;
|
|
1595
5112
|
exports.FaceSearchSortBy = FaceSearchSortBy;
|
|
5113
|
+
exports.Gender$ = Gender$;
|
|
1596
5114
|
exports.GenderType = GenderType;
|
|
5115
|
+
exports.GeneralLabelsSettings$ = GeneralLabelsSettings$;
|
|
5116
|
+
exports.Geometry$ = Geometry$;
|
|
5117
|
+
exports.GetCelebrityInfo$ = GetCelebrityInfo$;
|
|
1597
5118
|
exports.GetCelebrityInfoCommand = GetCelebrityInfoCommand;
|
|
5119
|
+
exports.GetCelebrityInfoRequest$ = GetCelebrityInfoRequest$;
|
|
5120
|
+
exports.GetCelebrityInfoResponse$ = GetCelebrityInfoResponse$;
|
|
5121
|
+
exports.GetCelebrityRecognition$ = GetCelebrityRecognition$;
|
|
1598
5122
|
exports.GetCelebrityRecognitionCommand = GetCelebrityRecognitionCommand;
|
|
5123
|
+
exports.GetCelebrityRecognitionRequest$ = GetCelebrityRecognitionRequest$;
|
|
5124
|
+
exports.GetCelebrityRecognitionResponse$ = GetCelebrityRecognitionResponse$;
|
|
5125
|
+
exports.GetContentModeration$ = GetContentModeration$;
|
|
1599
5126
|
exports.GetContentModerationCommand = GetContentModerationCommand;
|
|
5127
|
+
exports.GetContentModerationRequest$ = GetContentModerationRequest$;
|
|
5128
|
+
exports.GetContentModerationRequestMetadata$ = GetContentModerationRequestMetadata$;
|
|
5129
|
+
exports.GetContentModerationResponse$ = GetContentModerationResponse$;
|
|
5130
|
+
exports.GetFaceDetection$ = GetFaceDetection$;
|
|
1600
5131
|
exports.GetFaceDetectionCommand = GetFaceDetectionCommand;
|
|
5132
|
+
exports.GetFaceDetectionRequest$ = GetFaceDetectionRequest$;
|
|
5133
|
+
exports.GetFaceDetectionResponse$ = GetFaceDetectionResponse$;
|
|
5134
|
+
exports.GetFaceLivenessSessionResults$ = GetFaceLivenessSessionResults$;
|
|
1601
5135
|
exports.GetFaceLivenessSessionResultsCommand = GetFaceLivenessSessionResultsCommand;
|
|
5136
|
+
exports.GetFaceLivenessSessionResultsRequest$ = GetFaceLivenessSessionResultsRequest$;
|
|
5137
|
+
exports.GetFaceLivenessSessionResultsResponse$ = GetFaceLivenessSessionResultsResponse$;
|
|
5138
|
+
exports.GetFaceSearch$ = GetFaceSearch$;
|
|
1602
5139
|
exports.GetFaceSearchCommand = GetFaceSearchCommand;
|
|
5140
|
+
exports.GetFaceSearchRequest$ = GetFaceSearchRequest$;
|
|
5141
|
+
exports.GetFaceSearchResponse$ = GetFaceSearchResponse$;
|
|
5142
|
+
exports.GetLabelDetection$ = GetLabelDetection$;
|
|
1603
5143
|
exports.GetLabelDetectionCommand = GetLabelDetectionCommand;
|
|
5144
|
+
exports.GetLabelDetectionRequest$ = GetLabelDetectionRequest$;
|
|
5145
|
+
exports.GetLabelDetectionRequestMetadata$ = GetLabelDetectionRequestMetadata$;
|
|
5146
|
+
exports.GetLabelDetectionResponse$ = GetLabelDetectionResponse$;
|
|
5147
|
+
exports.GetMediaAnalysisJob$ = GetMediaAnalysisJob$;
|
|
1604
5148
|
exports.GetMediaAnalysisJobCommand = GetMediaAnalysisJobCommand;
|
|
5149
|
+
exports.GetMediaAnalysisJobRequest$ = GetMediaAnalysisJobRequest$;
|
|
5150
|
+
exports.GetMediaAnalysisJobResponse$ = GetMediaAnalysisJobResponse$;
|
|
5151
|
+
exports.GetPersonTracking$ = GetPersonTracking$;
|
|
1605
5152
|
exports.GetPersonTrackingCommand = GetPersonTrackingCommand;
|
|
5153
|
+
exports.GetPersonTrackingRequest$ = GetPersonTrackingRequest$;
|
|
5154
|
+
exports.GetPersonTrackingResponse$ = GetPersonTrackingResponse$;
|
|
5155
|
+
exports.GetSegmentDetection$ = GetSegmentDetection$;
|
|
1606
5156
|
exports.GetSegmentDetectionCommand = GetSegmentDetectionCommand;
|
|
5157
|
+
exports.GetSegmentDetectionRequest$ = GetSegmentDetectionRequest$;
|
|
5158
|
+
exports.GetSegmentDetectionResponse$ = GetSegmentDetectionResponse$;
|
|
5159
|
+
exports.GetTextDetection$ = GetTextDetection$;
|
|
1607
5160
|
exports.GetTextDetectionCommand = GetTextDetectionCommand;
|
|
5161
|
+
exports.GetTextDetectionRequest$ = GetTextDetectionRequest$;
|
|
5162
|
+
exports.GetTextDetectionResponse$ = GetTextDetectionResponse$;
|
|
5163
|
+
exports.GroundTruthManifest$ = GroundTruthManifest$;
|
|
5164
|
+
exports.HumanLoopActivationOutput$ = HumanLoopActivationOutput$;
|
|
5165
|
+
exports.HumanLoopConfig$ = HumanLoopConfig$;
|
|
5166
|
+
exports.HumanLoopDataAttributes$ = HumanLoopDataAttributes$;
|
|
5167
|
+
exports.HumanLoopQuotaExceededException = HumanLoopQuotaExceededException;
|
|
5168
|
+
exports.HumanLoopQuotaExceededException$ = HumanLoopQuotaExceededException$;
|
|
5169
|
+
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
5170
|
+
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
5171
|
+
exports.Image$ = Image$;
|
|
5172
|
+
exports.ImageQuality$ = ImageQuality$;
|
|
5173
|
+
exports.ImageTooLargeException = ImageTooLargeException;
|
|
5174
|
+
exports.ImageTooLargeException$ = ImageTooLargeException$;
|
|
5175
|
+
exports.IndexFaces$ = IndexFaces$;
|
|
1608
5176
|
exports.IndexFacesCommand = IndexFacesCommand;
|
|
5177
|
+
exports.IndexFacesRequest$ = IndexFacesRequest$;
|
|
5178
|
+
exports.IndexFacesResponse$ = IndexFacesResponse$;
|
|
5179
|
+
exports.Instance$ = Instance$;
|
|
5180
|
+
exports.InternalServerError = InternalServerError;
|
|
5181
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
5182
|
+
exports.InvalidImageFormatException = InvalidImageFormatException;
|
|
5183
|
+
exports.InvalidImageFormatException$ = InvalidImageFormatException$;
|
|
5184
|
+
exports.InvalidManifestException = InvalidManifestException;
|
|
5185
|
+
exports.InvalidManifestException$ = InvalidManifestException$;
|
|
5186
|
+
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
5187
|
+
exports.InvalidPaginationTokenException$ = InvalidPaginationTokenException$;
|
|
5188
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
5189
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
5190
|
+
exports.InvalidPolicyRevisionIdException = InvalidPolicyRevisionIdException;
|
|
5191
|
+
exports.InvalidPolicyRevisionIdException$ = InvalidPolicyRevisionIdException$;
|
|
5192
|
+
exports.InvalidS3ObjectException = InvalidS3ObjectException;
|
|
5193
|
+
exports.InvalidS3ObjectException$ = InvalidS3ObjectException$;
|
|
5194
|
+
exports.KinesisDataStream$ = KinesisDataStream$;
|
|
5195
|
+
exports.KinesisVideoStream$ = KinesisVideoStream$;
|
|
5196
|
+
exports.KinesisVideoStreamStartSelector$ = KinesisVideoStreamStartSelector$;
|
|
5197
|
+
exports.KnownGender$ = KnownGender$;
|
|
1609
5198
|
exports.KnownGenderType = KnownGenderType;
|
|
5199
|
+
exports.Label$ = Label$;
|
|
5200
|
+
exports.LabelAlias$ = LabelAlias$;
|
|
5201
|
+
exports.LabelCategory$ = LabelCategory$;
|
|
5202
|
+
exports.LabelDetection$ = LabelDetection$;
|
|
1610
5203
|
exports.LabelDetectionAggregateBy = LabelDetectionAggregateBy;
|
|
1611
5204
|
exports.LabelDetectionFeatureName = LabelDetectionFeatureName;
|
|
5205
|
+
exports.LabelDetectionSettings$ = LabelDetectionSettings$;
|
|
1612
5206
|
exports.LabelDetectionSortBy = LabelDetectionSortBy;
|
|
5207
|
+
exports.Landmark$ = Landmark$;
|
|
1613
5208
|
exports.LandmarkType = LandmarkType;
|
|
5209
|
+
exports.LimitExceededException = LimitExceededException;
|
|
5210
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
5211
|
+
exports.ListCollections$ = ListCollections$;
|
|
1614
5212
|
exports.ListCollectionsCommand = ListCollectionsCommand;
|
|
5213
|
+
exports.ListCollectionsRequest$ = ListCollectionsRequest$;
|
|
5214
|
+
exports.ListCollectionsResponse$ = ListCollectionsResponse$;
|
|
5215
|
+
exports.ListDatasetEntries$ = ListDatasetEntries$;
|
|
1615
5216
|
exports.ListDatasetEntriesCommand = ListDatasetEntriesCommand;
|
|
5217
|
+
exports.ListDatasetEntriesRequest$ = ListDatasetEntriesRequest$;
|
|
5218
|
+
exports.ListDatasetEntriesResponse$ = ListDatasetEntriesResponse$;
|
|
5219
|
+
exports.ListDatasetLabels$ = ListDatasetLabels$;
|
|
1616
5220
|
exports.ListDatasetLabelsCommand = ListDatasetLabelsCommand;
|
|
5221
|
+
exports.ListDatasetLabelsRequest$ = ListDatasetLabelsRequest$;
|
|
5222
|
+
exports.ListDatasetLabelsResponse$ = ListDatasetLabelsResponse$;
|
|
5223
|
+
exports.ListFaces$ = ListFaces$;
|
|
1617
5224
|
exports.ListFacesCommand = ListFacesCommand;
|
|
5225
|
+
exports.ListFacesRequest$ = ListFacesRequest$;
|
|
5226
|
+
exports.ListFacesResponse$ = ListFacesResponse$;
|
|
5227
|
+
exports.ListMediaAnalysisJobs$ = ListMediaAnalysisJobs$;
|
|
1618
5228
|
exports.ListMediaAnalysisJobsCommand = ListMediaAnalysisJobsCommand;
|
|
5229
|
+
exports.ListMediaAnalysisJobsRequest$ = ListMediaAnalysisJobsRequest$;
|
|
5230
|
+
exports.ListMediaAnalysisJobsResponse$ = ListMediaAnalysisJobsResponse$;
|
|
5231
|
+
exports.ListProjectPolicies$ = ListProjectPolicies$;
|
|
1619
5232
|
exports.ListProjectPoliciesCommand = ListProjectPoliciesCommand;
|
|
5233
|
+
exports.ListProjectPoliciesRequest$ = ListProjectPoliciesRequest$;
|
|
5234
|
+
exports.ListProjectPoliciesResponse$ = ListProjectPoliciesResponse$;
|
|
5235
|
+
exports.ListStreamProcessors$ = ListStreamProcessors$;
|
|
1620
5236
|
exports.ListStreamProcessorsCommand = ListStreamProcessorsCommand;
|
|
5237
|
+
exports.ListStreamProcessorsRequest$ = ListStreamProcessorsRequest$;
|
|
5238
|
+
exports.ListStreamProcessorsResponse$ = ListStreamProcessorsResponse$;
|
|
5239
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1621
5240
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5241
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
5242
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
5243
|
+
exports.ListUsers$ = ListUsers$;
|
|
1622
5244
|
exports.ListUsersCommand = ListUsersCommand;
|
|
5245
|
+
exports.ListUsersRequest$ = ListUsersRequest$;
|
|
5246
|
+
exports.ListUsersResponse$ = ListUsersResponse$;
|
|
5247
|
+
exports.LivenessOutputConfig$ = LivenessOutputConfig$;
|
|
1623
5248
|
exports.LivenessSessionStatus = LivenessSessionStatus;
|
|
5249
|
+
exports.MalformedPolicyDocumentException = MalformedPolicyDocumentException;
|
|
5250
|
+
exports.MalformedPolicyDocumentException$ = MalformedPolicyDocumentException$;
|
|
5251
|
+
exports.MatchedUser$ = MatchedUser$;
|
|
5252
|
+
exports.MediaAnalysisDetectModerationLabelsConfig$ = MediaAnalysisDetectModerationLabelsConfig$;
|
|
5253
|
+
exports.MediaAnalysisInput$ = MediaAnalysisInput$;
|
|
5254
|
+
exports.MediaAnalysisJobDescription$ = MediaAnalysisJobDescription$;
|
|
1624
5255
|
exports.MediaAnalysisJobFailureCode = MediaAnalysisJobFailureCode;
|
|
5256
|
+
exports.MediaAnalysisJobFailureDetails$ = MediaAnalysisJobFailureDetails$;
|
|
1625
5257
|
exports.MediaAnalysisJobStatus = MediaAnalysisJobStatus;
|
|
5258
|
+
exports.MediaAnalysisManifestSummary$ = MediaAnalysisManifestSummary$;
|
|
5259
|
+
exports.MediaAnalysisModelVersions$ = MediaAnalysisModelVersions$;
|
|
5260
|
+
exports.MediaAnalysisOperationsConfig$ = MediaAnalysisOperationsConfig$;
|
|
5261
|
+
exports.MediaAnalysisOutputConfig$ = MediaAnalysisOutputConfig$;
|
|
5262
|
+
exports.MediaAnalysisResults$ = MediaAnalysisResults$;
|
|
5263
|
+
exports.ModerationLabel$ = ModerationLabel$;
|
|
5264
|
+
exports.MouthOpen$ = MouthOpen$;
|
|
5265
|
+
exports.Mustache$ = Mustache$;
|
|
5266
|
+
exports.NotificationChannel$ = NotificationChannel$;
|
|
1626
5267
|
exports.OrientationCorrection = OrientationCorrection;
|
|
5268
|
+
exports.OutputConfig$ = OutputConfig$;
|
|
5269
|
+
exports.Parent$ = Parent$;
|
|
5270
|
+
exports.PersonDetail$ = PersonDetail$;
|
|
5271
|
+
exports.PersonDetection$ = PersonDetection$;
|
|
5272
|
+
exports.PersonMatch$ = PersonMatch$;
|
|
1627
5273
|
exports.PersonTrackingSortBy = PersonTrackingSortBy;
|
|
5274
|
+
exports.Point$ = Point$;
|
|
5275
|
+
exports.Pose$ = Pose$;
|
|
1628
5276
|
exports.ProjectAutoUpdate = ProjectAutoUpdate;
|
|
5277
|
+
exports.ProjectDescription$ = ProjectDescription$;
|
|
5278
|
+
exports.ProjectPolicy$ = ProjectPolicy$;
|
|
1629
5279
|
exports.ProjectStatus = ProjectStatus;
|
|
5280
|
+
exports.ProjectVersionDescription$ = ProjectVersionDescription$;
|
|
1630
5281
|
exports.ProjectVersionStatus = ProjectVersionStatus;
|
|
5282
|
+
exports.ProtectiveEquipmentBodyPart$ = ProtectiveEquipmentBodyPart$;
|
|
5283
|
+
exports.ProtectiveEquipmentPerson$ = ProtectiveEquipmentPerson$;
|
|
5284
|
+
exports.ProtectiveEquipmentSummarizationAttributes$ = ProtectiveEquipmentSummarizationAttributes$;
|
|
5285
|
+
exports.ProtectiveEquipmentSummary$ = ProtectiveEquipmentSummary$;
|
|
1631
5286
|
exports.ProtectiveEquipmentType = ProtectiveEquipmentType;
|
|
5287
|
+
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
5288
|
+
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
5289
|
+
exports.PutProjectPolicy$ = PutProjectPolicy$;
|
|
1632
5290
|
exports.PutProjectPolicyCommand = PutProjectPolicyCommand;
|
|
5291
|
+
exports.PutProjectPolicyRequest$ = PutProjectPolicyRequest$;
|
|
5292
|
+
exports.PutProjectPolicyResponse$ = PutProjectPolicyResponse$;
|
|
1633
5293
|
exports.QualityFilter = QualityFilter;
|
|
1634
5294
|
exports.Reason = Reason;
|
|
5295
|
+
exports.RecognizeCelebrities$ = RecognizeCelebrities$;
|
|
1635
5296
|
exports.RecognizeCelebritiesCommand = RecognizeCelebritiesCommand;
|
|
5297
|
+
exports.RecognizeCelebritiesRequest$ = RecognizeCelebritiesRequest$;
|
|
5298
|
+
exports.RecognizeCelebritiesResponse$ = RecognizeCelebritiesResponse$;
|
|
5299
|
+
exports.RegionOfInterest$ = RegionOfInterest$;
|
|
1636
5300
|
exports.Rekognition = Rekognition;
|
|
1637
5301
|
exports.RekognitionClient = RekognitionClient;
|
|
5302
|
+
exports.RekognitionServiceException = RekognitionServiceException;
|
|
5303
|
+
exports.RekognitionServiceException$ = RekognitionServiceException$;
|
|
5304
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
5305
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
5306
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
5307
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
5308
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
5309
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
5310
|
+
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
5311
|
+
exports.ResourceNotReadyException$ = ResourceNotReadyException$;
|
|
5312
|
+
exports.S3Destination$ = S3Destination$;
|
|
5313
|
+
exports.S3Object$ = S3Object$;
|
|
5314
|
+
exports.SearchFaces$ = SearchFaces$;
|
|
5315
|
+
exports.SearchFacesByImage$ = SearchFacesByImage$;
|
|
1638
5316
|
exports.SearchFacesByImageCommand = SearchFacesByImageCommand;
|
|
5317
|
+
exports.SearchFacesByImageRequest$ = SearchFacesByImageRequest$;
|
|
5318
|
+
exports.SearchFacesByImageResponse$ = SearchFacesByImageResponse$;
|
|
1639
5319
|
exports.SearchFacesCommand = SearchFacesCommand;
|
|
5320
|
+
exports.SearchFacesRequest$ = SearchFacesRequest$;
|
|
5321
|
+
exports.SearchFacesResponse$ = SearchFacesResponse$;
|
|
5322
|
+
exports.SearchUsers$ = SearchUsers$;
|
|
5323
|
+
exports.SearchUsersByImage$ = SearchUsersByImage$;
|
|
1640
5324
|
exports.SearchUsersByImageCommand = SearchUsersByImageCommand;
|
|
5325
|
+
exports.SearchUsersByImageRequest$ = SearchUsersByImageRequest$;
|
|
5326
|
+
exports.SearchUsersByImageResponse$ = SearchUsersByImageResponse$;
|
|
1641
5327
|
exports.SearchUsersCommand = SearchUsersCommand;
|
|
5328
|
+
exports.SearchUsersRequest$ = SearchUsersRequest$;
|
|
5329
|
+
exports.SearchUsersResponse$ = SearchUsersResponse$;
|
|
5330
|
+
exports.SearchedFace$ = SearchedFace$;
|
|
5331
|
+
exports.SearchedFaceDetails$ = SearchedFaceDetails$;
|
|
5332
|
+
exports.SearchedUser$ = SearchedUser$;
|
|
5333
|
+
exports.SegmentDetection$ = SegmentDetection$;
|
|
1642
5334
|
exports.SegmentType = SegmentType;
|
|
5335
|
+
exports.SegmentTypeInfo$ = SegmentTypeInfo$;
|
|
5336
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
5337
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
5338
|
+
exports.SessionNotFoundException = SessionNotFoundException;
|
|
5339
|
+
exports.SessionNotFoundException$ = SessionNotFoundException$;
|
|
5340
|
+
exports.ShotSegment$ = ShotSegment$;
|
|
5341
|
+
exports.Smile$ = Smile$;
|
|
5342
|
+
exports.StartCelebrityRecognition$ = StartCelebrityRecognition$;
|
|
1643
5343
|
exports.StartCelebrityRecognitionCommand = StartCelebrityRecognitionCommand;
|
|
5344
|
+
exports.StartCelebrityRecognitionRequest$ = StartCelebrityRecognitionRequest$;
|
|
5345
|
+
exports.StartCelebrityRecognitionResponse$ = StartCelebrityRecognitionResponse$;
|
|
5346
|
+
exports.StartContentModeration$ = StartContentModeration$;
|
|
1644
5347
|
exports.StartContentModerationCommand = StartContentModerationCommand;
|
|
5348
|
+
exports.StartContentModerationRequest$ = StartContentModerationRequest$;
|
|
5349
|
+
exports.StartContentModerationResponse$ = StartContentModerationResponse$;
|
|
5350
|
+
exports.StartFaceDetection$ = StartFaceDetection$;
|
|
1645
5351
|
exports.StartFaceDetectionCommand = StartFaceDetectionCommand;
|
|
5352
|
+
exports.StartFaceDetectionRequest$ = StartFaceDetectionRequest$;
|
|
5353
|
+
exports.StartFaceDetectionResponse$ = StartFaceDetectionResponse$;
|
|
5354
|
+
exports.StartFaceSearch$ = StartFaceSearch$;
|
|
1646
5355
|
exports.StartFaceSearchCommand = StartFaceSearchCommand;
|
|
5356
|
+
exports.StartFaceSearchRequest$ = StartFaceSearchRequest$;
|
|
5357
|
+
exports.StartFaceSearchResponse$ = StartFaceSearchResponse$;
|
|
5358
|
+
exports.StartLabelDetection$ = StartLabelDetection$;
|
|
1647
5359
|
exports.StartLabelDetectionCommand = StartLabelDetectionCommand;
|
|
5360
|
+
exports.StartLabelDetectionRequest$ = StartLabelDetectionRequest$;
|
|
5361
|
+
exports.StartLabelDetectionResponse$ = StartLabelDetectionResponse$;
|
|
5362
|
+
exports.StartMediaAnalysisJob$ = StartMediaAnalysisJob$;
|
|
1648
5363
|
exports.StartMediaAnalysisJobCommand = StartMediaAnalysisJobCommand;
|
|
5364
|
+
exports.StartMediaAnalysisJobRequest$ = StartMediaAnalysisJobRequest$;
|
|
5365
|
+
exports.StartMediaAnalysisJobResponse$ = StartMediaAnalysisJobResponse$;
|
|
5366
|
+
exports.StartPersonTracking$ = StartPersonTracking$;
|
|
1649
5367
|
exports.StartPersonTrackingCommand = StartPersonTrackingCommand;
|
|
5368
|
+
exports.StartPersonTrackingRequest$ = StartPersonTrackingRequest$;
|
|
5369
|
+
exports.StartPersonTrackingResponse$ = StartPersonTrackingResponse$;
|
|
5370
|
+
exports.StartProjectVersion$ = StartProjectVersion$;
|
|
1650
5371
|
exports.StartProjectVersionCommand = StartProjectVersionCommand;
|
|
5372
|
+
exports.StartProjectVersionRequest$ = StartProjectVersionRequest$;
|
|
5373
|
+
exports.StartProjectVersionResponse$ = StartProjectVersionResponse$;
|
|
5374
|
+
exports.StartSegmentDetection$ = StartSegmentDetection$;
|
|
1651
5375
|
exports.StartSegmentDetectionCommand = StartSegmentDetectionCommand;
|
|
5376
|
+
exports.StartSegmentDetectionFilters$ = StartSegmentDetectionFilters$;
|
|
5377
|
+
exports.StartSegmentDetectionRequest$ = StartSegmentDetectionRequest$;
|
|
5378
|
+
exports.StartSegmentDetectionResponse$ = StartSegmentDetectionResponse$;
|
|
5379
|
+
exports.StartShotDetectionFilter$ = StartShotDetectionFilter$;
|
|
5380
|
+
exports.StartStreamProcessor$ = StartStreamProcessor$;
|
|
1652
5381
|
exports.StartStreamProcessorCommand = StartStreamProcessorCommand;
|
|
5382
|
+
exports.StartStreamProcessorRequest$ = StartStreamProcessorRequest$;
|
|
5383
|
+
exports.StartStreamProcessorResponse$ = StartStreamProcessorResponse$;
|
|
5384
|
+
exports.StartTechnicalCueDetectionFilter$ = StartTechnicalCueDetectionFilter$;
|
|
5385
|
+
exports.StartTextDetection$ = StartTextDetection$;
|
|
1653
5386
|
exports.StartTextDetectionCommand = StartTextDetectionCommand;
|
|
5387
|
+
exports.StartTextDetectionFilters$ = StartTextDetectionFilters$;
|
|
5388
|
+
exports.StartTextDetectionRequest$ = StartTextDetectionRequest$;
|
|
5389
|
+
exports.StartTextDetectionResponse$ = StartTextDetectionResponse$;
|
|
5390
|
+
exports.StopProjectVersion$ = StopProjectVersion$;
|
|
1654
5391
|
exports.StopProjectVersionCommand = StopProjectVersionCommand;
|
|
5392
|
+
exports.StopProjectVersionRequest$ = StopProjectVersionRequest$;
|
|
5393
|
+
exports.StopProjectVersionResponse$ = StopProjectVersionResponse$;
|
|
5394
|
+
exports.StopStreamProcessor$ = StopStreamProcessor$;
|
|
1655
5395
|
exports.StopStreamProcessorCommand = StopStreamProcessorCommand;
|
|
5396
|
+
exports.StopStreamProcessorRequest$ = StopStreamProcessorRequest$;
|
|
5397
|
+
exports.StopStreamProcessorResponse$ = StopStreamProcessorResponse$;
|
|
5398
|
+
exports.StreamProcessingStartSelector$ = StreamProcessingStartSelector$;
|
|
5399
|
+
exports.StreamProcessingStopSelector$ = StreamProcessingStopSelector$;
|
|
5400
|
+
exports.StreamProcessor$ = StreamProcessor$;
|
|
5401
|
+
exports.StreamProcessorDataSharingPreference$ = StreamProcessorDataSharingPreference$;
|
|
5402
|
+
exports.StreamProcessorInput$ = StreamProcessorInput$;
|
|
5403
|
+
exports.StreamProcessorNotificationChannel$ = StreamProcessorNotificationChannel$;
|
|
5404
|
+
exports.StreamProcessorOutput$ = StreamProcessorOutput$;
|
|
1656
5405
|
exports.StreamProcessorParameterToDelete = StreamProcessorParameterToDelete;
|
|
5406
|
+
exports.StreamProcessorSettings$ = StreamProcessorSettings$;
|
|
5407
|
+
exports.StreamProcessorSettingsForUpdate$ = StreamProcessorSettingsForUpdate$;
|
|
1657
5408
|
exports.StreamProcessorStatus = StreamProcessorStatus;
|
|
5409
|
+
exports.Summary$ = Summary$;
|
|
5410
|
+
exports.Sunglasses$ = Sunglasses$;
|
|
5411
|
+
exports.TagResource$ = TagResource$;
|
|
1658
5412
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5413
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
5414
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
5415
|
+
exports.TechnicalCueSegment$ = TechnicalCueSegment$;
|
|
1659
5416
|
exports.TechnicalCueType = TechnicalCueType;
|
|
5417
|
+
exports.TestingData$ = TestingData$;
|
|
5418
|
+
exports.TestingDataResult$ = TestingDataResult$;
|
|
5419
|
+
exports.TextDetection$ = TextDetection$;
|
|
5420
|
+
exports.TextDetectionResult$ = TextDetectionResult$;
|
|
1660
5421
|
exports.TextTypes = TextTypes;
|
|
5422
|
+
exports.ThrottlingException = ThrottlingException;
|
|
5423
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
5424
|
+
exports.TrainingData$ = TrainingData$;
|
|
5425
|
+
exports.TrainingDataResult$ = TrainingDataResult$;
|
|
5426
|
+
exports.UnindexedFace$ = UnindexedFace$;
|
|
5427
|
+
exports.UnsearchedFace$ = UnsearchedFace$;
|
|
1661
5428
|
exports.UnsearchedFaceReason = UnsearchedFaceReason;
|
|
5429
|
+
exports.UnsuccessfulFaceAssociation$ = UnsuccessfulFaceAssociation$;
|
|
1662
5430
|
exports.UnsuccessfulFaceAssociationReason = UnsuccessfulFaceAssociationReason;
|
|
5431
|
+
exports.UnsuccessfulFaceDeletion$ = UnsuccessfulFaceDeletion$;
|
|
1663
5432
|
exports.UnsuccessfulFaceDeletionReason = UnsuccessfulFaceDeletionReason;
|
|
5433
|
+
exports.UnsuccessfulFaceDisassociation$ = UnsuccessfulFaceDisassociation$;
|
|
1664
5434
|
exports.UnsuccessfulFaceDisassociationReason = UnsuccessfulFaceDisassociationReason;
|
|
5435
|
+
exports.UntagResource$ = UntagResource$;
|
|
1665
5436
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5437
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
5438
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
5439
|
+
exports.UpdateDatasetEntries$ = UpdateDatasetEntries$;
|
|
1666
5440
|
exports.UpdateDatasetEntriesCommand = UpdateDatasetEntriesCommand;
|
|
5441
|
+
exports.UpdateDatasetEntriesRequest$ = UpdateDatasetEntriesRequest$;
|
|
5442
|
+
exports.UpdateDatasetEntriesResponse$ = UpdateDatasetEntriesResponse$;
|
|
5443
|
+
exports.UpdateStreamProcessor$ = UpdateStreamProcessor$;
|
|
1667
5444
|
exports.UpdateStreamProcessorCommand = UpdateStreamProcessorCommand;
|
|
5445
|
+
exports.UpdateStreamProcessorRequest$ = UpdateStreamProcessorRequest$;
|
|
5446
|
+
exports.UpdateStreamProcessorResponse$ = UpdateStreamProcessorResponse$;
|
|
5447
|
+
exports.User$ = User$;
|
|
5448
|
+
exports.UserMatch$ = UserMatch$;
|
|
1668
5449
|
exports.UserStatus = UserStatus;
|
|
5450
|
+
exports.ValidationData$ = ValidationData$;
|
|
5451
|
+
exports.Versions$ = Versions$;
|
|
5452
|
+
exports.Video$ = Video$;
|
|
1669
5453
|
exports.VideoColorRange = VideoColorRange;
|
|
1670
5454
|
exports.VideoJobStatus = VideoJobStatus;
|
|
5455
|
+
exports.VideoMetadata$ = VideoMetadata$;
|
|
5456
|
+
exports.VideoTooLargeException = VideoTooLargeException;
|
|
5457
|
+
exports.VideoTooLargeException$ = VideoTooLargeException$;
|
|
5458
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1671
5459
|
exports.paginateDescribeProjectVersions = paginateDescribeProjectVersions;
|
|
1672
5460
|
exports.paginateDescribeProjects = paginateDescribeProjects;
|
|
1673
5461
|
exports.paginateGetCelebrityRecognition = paginateGetCelebrityRecognition;
|