@aws-sdk/client-voice-id 3.296.0 → 3.298.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/commands/DeleteDomainCommand.js +2 -3
- package/dist-cjs/commands/DeleteFraudsterCommand.js +1 -1
- package/dist-cjs/commands/DeleteSpeakerCommand.js +1 -1
- package/dist-cjs/commands/DescribeDomainCommand.js +1 -1
- package/dist-cjs/commands/DescribeFraudsterCommand.js +1 -1
- package/dist-cjs/commands/DescribeFraudsterRegistrationJobCommand.js +1 -1
- package/dist-cjs/commands/DescribeSpeakerEnrollmentJobCommand.js +1 -1
- package/dist-cjs/commands/EvaluateSessionCommand.js +1 -1
- package/dist-cjs/commands/ListDomainsCommand.js +1 -1
- package/dist-cjs/commands/ListFraudsterRegistrationJobsCommand.js +1 -1
- package/dist-cjs/commands/ListSpeakerEnrollmentJobsCommand.js +1 -1
- package/dist-cjs/commands/ListSpeakersCommand.js +1 -1
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/models/models_0.js +2 -118
- package/dist-es/commands/DeleteDomainCommand.js +2 -3
- package/dist-es/commands/DeleteFraudsterCommand.js +1 -1
- package/dist-es/commands/DeleteSpeakerCommand.js +1 -1
- package/dist-es/commands/DescribeDomainCommand.js +2 -2
- package/dist-es/commands/DescribeFraudsterCommand.js +2 -2
- package/dist-es/commands/DescribeFraudsterRegistrationJobCommand.js +2 -2
- package/dist-es/commands/DescribeSpeakerEnrollmentJobCommand.js +2 -2
- package/dist-es/commands/EvaluateSessionCommand.js +2 -2
- package/dist-es/commands/ListDomainsCommand.js +2 -2
- package/dist-es/commands/ListFraudsterRegistrationJobsCommand.js +2 -2
- package/dist-es/commands/ListSpeakerEnrollmentJobsCommand.js +2 -2
- package/dist-es/commands/ListSpeakersCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/models/models_0.js +0 -87
- package/dist-types/VoiceID.d.ts +22 -0
- package/dist-types/VoiceIDClient.d.ts +24 -4
- package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFraudsterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSpeakerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFraudsterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFraudsterRegistrationJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSpeakerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +16 -0
- package/dist-types/commands/EvaluateSessionCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListSpeakersCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/OptOutSpeakerCommand.d.ts +16 -0
- package/dist-types/commands/StartFraudsterRegistrationJobCommand.d.ts +16 -0
- package/dist-types/commands/StartSpeakerEnrollmentJobCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +16 -0
- package/dist-types/models/VoiceIDServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +193 -117
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSpeakersPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -83
- package/package.json +4 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { TagResourceRequestFilterSensitiveLog
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0TagResourceCommand, serializeAws_json1_0TagResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class TagResourceCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -28,7 +28,7 @@ export class TagResourceCommand extends $Command {
|
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
30
|
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
34
34
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UntagResourceRequestFilterSensitiveLog,
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0UntagResourceCommand, serializeAws_json1_0UntagResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class UntagResourceCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -28,7 +28,7 @@ export class UntagResourceCommand extends $Command {
|
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
30
|
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
34
34
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -190,16 +190,10 @@ export var StreamingStatus;
|
|
|
190
190
|
StreamingStatus["ONGOING"] = "ONGOING";
|
|
191
191
|
StreamingStatus["PENDING_CONFIGURATION"] = "PENDING_CONFIGURATION";
|
|
192
192
|
})(StreamingStatus || (StreamingStatus = {}));
|
|
193
|
-
export const AuthenticationConfigurationFilterSensitiveLog = (obj) => ({
|
|
194
|
-
...obj,
|
|
195
|
-
});
|
|
196
193
|
export const AuthenticationResultFilterSensitiveLog = (obj) => ({
|
|
197
194
|
...obj,
|
|
198
195
|
...(obj.CustomerSpeakerId && { CustomerSpeakerId: SENSITIVE_STRING }),
|
|
199
196
|
});
|
|
200
|
-
export const ServerSideEncryptionConfigurationFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
197
|
export const TagFilterSensitiveLog = (obj) => ({
|
|
204
198
|
...obj,
|
|
205
199
|
...(obj.Key && { Key: SENSITIVE_STRING }),
|
|
@@ -211,9 +205,6 @@ export const CreateDomainRequestFilterSensitiveLog = (obj) => ({
|
|
|
211
205
|
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
212
206
|
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
213
207
|
});
|
|
214
|
-
export const ServerSideEncryptionUpdateDetailsFilterSensitiveLog = (obj) => ({
|
|
215
|
-
...obj,
|
|
216
|
-
});
|
|
217
208
|
export const DomainFilterSensitiveLog = (obj) => ({
|
|
218
209
|
...obj,
|
|
219
210
|
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
@@ -223,9 +214,6 @@ export const CreateDomainResponseFilterSensitiveLog = (obj) => ({
|
|
|
223
214
|
...obj,
|
|
224
215
|
...(obj.Domain && { Domain: DomainFilterSensitiveLog(obj.Domain) }),
|
|
225
216
|
});
|
|
226
|
-
export const DeleteDomainRequestFilterSensitiveLog = (obj) => ({
|
|
227
|
-
...obj,
|
|
228
|
-
});
|
|
229
217
|
export const DeleteFraudsterRequestFilterSensitiveLog = (obj) => ({
|
|
230
218
|
...obj,
|
|
231
219
|
...(obj.FraudsterId && { FraudsterId: SENSITIVE_STRING }),
|
|
@@ -234,9 +222,6 @@ export const DeleteSpeakerRequestFilterSensitiveLog = (obj) => ({
|
|
|
234
222
|
...obj,
|
|
235
223
|
...(obj.SpeakerId && { SpeakerId: SENSITIVE_STRING }),
|
|
236
224
|
});
|
|
237
|
-
export const DescribeDomainRequestFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
});
|
|
240
225
|
export const DescribeDomainResponseFilterSensitiveLog = (obj) => ({
|
|
241
226
|
...obj,
|
|
242
227
|
...(obj.Domain && { Domain: DomainFilterSensitiveLog(obj.Domain) }),
|
|
@@ -245,30 +230,6 @@ export const DescribeFraudsterRequestFilterSensitiveLog = (obj) => ({
|
|
|
245
230
|
...obj,
|
|
246
231
|
...(obj.FraudsterId && { FraudsterId: SENSITIVE_STRING }),
|
|
247
232
|
});
|
|
248
|
-
export const FraudsterFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const DescribeFraudsterResponseFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const DescribeFraudsterRegistrationJobRequestFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const FailureDetailsFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const InputDataConfigFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const JobProgressFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const OutputDataConfigFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const RegistrationConfigFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
233
|
export const FraudsterRegistrationJobFilterSensitiveLog = (obj) => ({
|
|
273
234
|
...obj,
|
|
274
235
|
...(obj.JobName && { JobName: SENSITIVE_STRING }),
|
|
@@ -289,15 +250,6 @@ export const DescribeSpeakerResponseFilterSensitiveLog = (obj) => ({
|
|
|
289
250
|
...obj,
|
|
290
251
|
...(obj.Speaker && { Speaker: SpeakerFilterSensitiveLog(obj.Speaker) }),
|
|
291
252
|
});
|
|
292
|
-
export const DescribeSpeakerEnrollmentJobRequestFilterSensitiveLog = (obj) => ({
|
|
293
|
-
...obj,
|
|
294
|
-
});
|
|
295
|
-
export const EnrollmentJobFraudDetectionConfigFilterSensitiveLog = (obj) => ({
|
|
296
|
-
...obj,
|
|
297
|
-
});
|
|
298
|
-
export const EnrollmentConfigFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
});
|
|
301
253
|
export const SpeakerEnrollmentJobFilterSensitiveLog = (obj) => ({
|
|
302
254
|
...obj,
|
|
303
255
|
...(obj.JobName && { JobName: SENSITIVE_STRING }),
|
|
@@ -306,9 +258,6 @@ export const DescribeSpeakerEnrollmentJobResponseFilterSensitiveLog = (obj) => (
|
|
|
306
258
|
...obj,
|
|
307
259
|
...(obj.Job && { Job: SpeakerEnrollmentJobFilterSensitiveLog(obj.Job) }),
|
|
308
260
|
});
|
|
309
|
-
export const ListDomainsRequestFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
261
|
export const DomainSummaryFilterSensitiveLog = (obj) => ({
|
|
313
262
|
...obj,
|
|
314
263
|
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
@@ -329,24 +278,6 @@ export const UpdateDomainResponseFilterSensitiveLog = (obj) => ({
|
|
|
329
278
|
...obj,
|
|
330
279
|
...(obj.Domain && { Domain: DomainFilterSensitiveLog(obj.Domain) }),
|
|
331
280
|
});
|
|
332
|
-
export const EvaluateSessionRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const FraudDetectionConfigurationFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const KnownFraudsterRiskFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const VoiceSpoofingRiskFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
export const FraudRiskDetailsFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const FraudDetectionResultFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
281
|
export const EvaluateSessionResponseFilterSensitiveLog = (obj) => ({
|
|
351
282
|
...obj,
|
|
352
283
|
...(obj.AuthenticationResult && {
|
|
@@ -357,18 +288,12 @@ export const FraudsterRegistrationJobSummaryFilterSensitiveLog = (obj) => ({
|
|
|
357
288
|
...obj,
|
|
358
289
|
...(obj.JobName && { JobName: SENSITIVE_STRING }),
|
|
359
290
|
});
|
|
360
|
-
export const ListFraudsterRegistrationJobsRequestFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
291
|
export const ListFraudsterRegistrationJobsResponseFilterSensitiveLog = (obj) => ({
|
|
364
292
|
...obj,
|
|
365
293
|
...(obj.JobSummaries && {
|
|
366
294
|
JobSummaries: obj.JobSummaries.map((item) => FraudsterRegistrationJobSummaryFilterSensitiveLog(item)),
|
|
367
295
|
}),
|
|
368
296
|
});
|
|
369
|
-
export const ListSpeakerEnrollmentJobsRequestFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
297
|
export const SpeakerEnrollmentJobSummaryFilterSensitiveLog = (obj) => ({
|
|
373
298
|
...obj,
|
|
374
299
|
...(obj.JobName && { JobName: SENSITIVE_STRING }),
|
|
@@ -379,9 +304,6 @@ export const ListSpeakerEnrollmentJobsResponseFilterSensitiveLog = (obj) => ({
|
|
|
379
304
|
JobSummaries: obj.JobSummaries.map((item) => SpeakerEnrollmentJobSummaryFilterSensitiveLog(item)),
|
|
380
305
|
}),
|
|
381
306
|
});
|
|
382
|
-
export const ListSpeakersRequestFilterSensitiveLog = (obj) => ({
|
|
383
|
-
...obj,
|
|
384
|
-
});
|
|
385
307
|
export const SpeakerSummaryFilterSensitiveLog = (obj) => ({
|
|
386
308
|
...obj,
|
|
387
309
|
...(obj.CustomerSpeakerId && { CustomerSpeakerId: SENSITIVE_STRING }),
|
|
@@ -392,9 +314,6 @@ export const ListSpeakersResponseFilterSensitiveLog = (obj) => ({
|
|
|
392
314
|
SpeakerSummaries: obj.SpeakerSummaries.map((item) => SpeakerSummaryFilterSensitiveLog(item)),
|
|
393
315
|
}),
|
|
394
316
|
});
|
|
395
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
317
|
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
399
318
|
...obj,
|
|
400
319
|
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
@@ -427,13 +346,7 @@ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
|
427
346
|
...obj,
|
|
428
347
|
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
429
348
|
});
|
|
430
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
431
|
-
...obj,
|
|
432
|
-
});
|
|
433
349
|
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
434
350
|
...obj,
|
|
435
351
|
...(obj.TagKeys && { TagKeys: SENSITIVE_STRING }),
|
|
436
352
|
});
|
|
437
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
438
|
-
...obj,
|
|
439
|
-
});
|
package/dist-types/VoiceID.d.ts
CHANGED
|
@@ -22,11 +22,13 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
22
22
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
23
23
|
import { VoiceIDClient } from "./VoiceIDClient";
|
|
24
24
|
/**
|
|
25
|
+
* @public
|
|
25
26
|
* <p>Amazon Connect Voice ID provides real-time caller authentication and fraud screening. This guide
|
|
26
27
|
* describes the APIs used for this service. </p>
|
|
27
28
|
*/
|
|
28
29
|
export declare class VoiceID extends VoiceIDClient {
|
|
29
30
|
/**
|
|
31
|
+
* @public
|
|
30
32
|
* <p>Creates a domain that contains all Amazon Connect Voice ID data, such as speakers, fraudsters,
|
|
31
33
|
* customer audio, and voiceprints. </p>
|
|
32
34
|
*/
|
|
@@ -34,54 +36,63 @@ export declare class VoiceID extends VoiceIDClient {
|
|
|
34
36
|
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
35
37
|
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
36
38
|
/**
|
|
39
|
+
* @public
|
|
37
40
|
* <p>Deletes the specified domain from Voice ID.</p>
|
|
38
41
|
*/
|
|
39
42
|
deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
|
|
40
43
|
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
41
44
|
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
42
45
|
/**
|
|
46
|
+
* @public
|
|
43
47
|
* <p>Deletes the specified fraudster from Voice ID.</p>
|
|
44
48
|
*/
|
|
45
49
|
deleteFraudster(args: DeleteFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFraudsterCommandOutput>;
|
|
46
50
|
deleteFraudster(args: DeleteFraudsterCommandInput, cb: (err: any, data?: DeleteFraudsterCommandOutput) => void): void;
|
|
47
51
|
deleteFraudster(args: DeleteFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFraudsterCommandOutput) => void): void;
|
|
48
52
|
/**
|
|
53
|
+
* @public
|
|
49
54
|
* <p>Deletes the specified speaker from Voice ID.</p>
|
|
50
55
|
*/
|
|
51
56
|
deleteSpeaker(args: DeleteSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSpeakerCommandOutput>;
|
|
52
57
|
deleteSpeaker(args: DeleteSpeakerCommandInput, cb: (err: any, data?: DeleteSpeakerCommandOutput) => void): void;
|
|
53
58
|
deleteSpeaker(args: DeleteSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSpeakerCommandOutput) => void): void;
|
|
54
59
|
/**
|
|
60
|
+
* @public
|
|
55
61
|
* <p>Describes the specified domain.</p>
|
|
56
62
|
*/
|
|
57
63
|
describeDomain(args: DescribeDomainCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDomainCommandOutput>;
|
|
58
64
|
describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
59
65
|
describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
60
66
|
/**
|
|
67
|
+
* @public
|
|
61
68
|
* <p>Describes the specified fraudster.</p>
|
|
62
69
|
*/
|
|
63
70
|
describeFraudster(args: DescribeFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFraudsterCommandOutput>;
|
|
64
71
|
describeFraudster(args: DescribeFraudsterCommandInput, cb: (err: any, data?: DescribeFraudsterCommandOutput) => void): void;
|
|
65
72
|
describeFraudster(args: DescribeFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFraudsterCommandOutput) => void): void;
|
|
66
73
|
/**
|
|
74
|
+
* @public
|
|
67
75
|
* <p>Describes the specified fraudster registration job.</p>
|
|
68
76
|
*/
|
|
69
77
|
describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFraudsterRegistrationJobCommandOutput>;
|
|
70
78
|
describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, cb: (err: any, data?: DescribeFraudsterRegistrationJobCommandOutput) => void): void;
|
|
71
79
|
describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFraudsterRegistrationJobCommandOutput) => void): void;
|
|
72
80
|
/**
|
|
81
|
+
* @public
|
|
73
82
|
* <p>Describes the specified speaker.</p>
|
|
74
83
|
*/
|
|
75
84
|
describeSpeaker(args: DescribeSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpeakerCommandOutput>;
|
|
76
85
|
describeSpeaker(args: DescribeSpeakerCommandInput, cb: (err: any, data?: DescribeSpeakerCommandOutput) => void): void;
|
|
77
86
|
describeSpeaker(args: DescribeSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpeakerCommandOutput) => void): void;
|
|
78
87
|
/**
|
|
88
|
+
* @public
|
|
79
89
|
* <p>Describes the specified speaker enrollment job.</p>
|
|
80
90
|
*/
|
|
81
91
|
describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpeakerEnrollmentJobCommandOutput>;
|
|
82
92
|
describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, cb: (err: any, data?: DescribeSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
83
93
|
describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
84
94
|
/**
|
|
95
|
+
* @public
|
|
85
96
|
* <p>Evaluates a specified session based on audio data accumulated during a streaming
|
|
86
97
|
* Amazon Connect Voice ID call.</p>
|
|
87
98
|
*/
|
|
@@ -89,12 +100,14 @@ export declare class VoiceID extends VoiceIDClient {
|
|
|
89
100
|
evaluateSession(args: EvaluateSessionCommandInput, cb: (err: any, data?: EvaluateSessionCommandOutput) => void): void;
|
|
90
101
|
evaluateSession(args: EvaluateSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EvaluateSessionCommandOutput) => void): void;
|
|
91
102
|
/**
|
|
103
|
+
* @public
|
|
92
104
|
* <p>Lists all the domains in the Amazon Web Services account. </p>
|
|
93
105
|
*/
|
|
94
106
|
listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
|
|
95
107
|
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
96
108
|
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
97
109
|
/**
|
|
110
|
+
* @public
|
|
98
111
|
* <p>Lists all the fraudster registration jobs in the domain with the given
|
|
99
112
|
* <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
|
|
100
113
|
* fraudster registration jobs in the given domain. </p>
|
|
@@ -103,6 +116,7 @@ export declare class VoiceID extends VoiceIDClient {
|
|
|
103
116
|
listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, cb: (err: any, data?: ListFraudsterRegistrationJobsCommandOutput) => void): void;
|
|
104
117
|
listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFraudsterRegistrationJobsCommandOutput) => void): void;
|
|
105
118
|
/**
|
|
119
|
+
* @public
|
|
106
120
|
* <p>Lists all the speaker enrollment jobs in the domain with the specified
|
|
107
121
|
* <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
|
|
108
122
|
* jobs with all possible speaker enrollment job statuses.</p>
|
|
@@ -111,18 +125,21 @@ export declare class VoiceID extends VoiceIDClient {
|
|
|
111
125
|
listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, cb: (err: any, data?: ListSpeakerEnrollmentJobsCommandOutput) => void): void;
|
|
112
126
|
listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpeakerEnrollmentJobsCommandOutput) => void): void;
|
|
113
127
|
/**
|
|
128
|
+
* @public
|
|
114
129
|
* <p>Lists all speakers in a specified domain.</p>
|
|
115
130
|
*/
|
|
116
131
|
listSpeakers(args: ListSpeakersCommandInput, options?: __HttpHandlerOptions): Promise<ListSpeakersCommandOutput>;
|
|
117
132
|
listSpeakers(args: ListSpeakersCommandInput, cb: (err: any, data?: ListSpeakersCommandOutput) => void): void;
|
|
118
133
|
listSpeakers(args: ListSpeakersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpeakersCommandOutput) => void): void;
|
|
119
134
|
/**
|
|
135
|
+
* @public
|
|
120
136
|
* <p>Lists all tags associated with a specified Voice ID resource.</p>
|
|
121
137
|
*/
|
|
122
138
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
123
139
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
124
140
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
125
141
|
/**
|
|
142
|
+
* @public
|
|
126
143
|
* <p>Opts out a speaker from Voice ID. A speaker can be opted out regardless of whether or
|
|
127
144
|
* not they already exist in Voice ID. If they don't yet exist, a new speaker is created
|
|
128
145
|
* in an opted out state. If they already exist, their existing status is overridden and
|
|
@@ -134,30 +151,35 @@ export declare class VoiceID extends VoiceIDClient {
|
|
|
134
151
|
optOutSpeaker(args: OptOutSpeakerCommandInput, cb: (err: any, data?: OptOutSpeakerCommandOutput) => void): void;
|
|
135
152
|
optOutSpeaker(args: OptOutSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: OptOutSpeakerCommandOutput) => void): void;
|
|
136
153
|
/**
|
|
154
|
+
* @public
|
|
137
155
|
* <p>Starts a new batch fraudster registration job using provided details.</p>
|
|
138
156
|
*/
|
|
139
157
|
startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, options?: __HttpHandlerOptions): Promise<StartFraudsterRegistrationJobCommandOutput>;
|
|
140
158
|
startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, cb: (err: any, data?: StartFraudsterRegistrationJobCommandOutput) => void): void;
|
|
141
159
|
startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFraudsterRegistrationJobCommandOutput) => void): void;
|
|
142
160
|
/**
|
|
161
|
+
* @public
|
|
143
162
|
* <p>Starts a new batch speaker enrollment job using specified details.</p>
|
|
144
163
|
*/
|
|
145
164
|
startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, options?: __HttpHandlerOptions): Promise<StartSpeakerEnrollmentJobCommandOutput>;
|
|
146
165
|
startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, cb: (err: any, data?: StartSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
147
166
|
startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
148
167
|
/**
|
|
168
|
+
* @public
|
|
149
169
|
* <p>Tags a Voice ID resource with the provided list of tags.</p>
|
|
150
170
|
*/
|
|
151
171
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
152
172
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
153
173
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
154
174
|
/**
|
|
175
|
+
* @public
|
|
155
176
|
* <p>Removes specified tags from a specified Amazon Connect Voice ID resource.</p>
|
|
156
177
|
*/
|
|
157
178
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
158
179
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
159
180
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
160
181
|
/**
|
|
182
|
+
* @public
|
|
161
183
|
* <p>Updates the specified domain. This API has clobber behavior, and clears and replaces
|
|
162
184
|
* all attributes. If an optional field, such as 'Description' is not provided, it is
|
|
163
185
|
* removed from the domain.</p>
|
|
@@ -29,15 +29,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
29
29
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
30
30
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
31
31
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
32
35
|
export type ServiceInputTypes = CreateDomainCommandInput | DeleteDomainCommandInput | DeleteFraudsterCommandInput | DeleteSpeakerCommandInput | DescribeDomainCommandInput | DescribeFraudsterCommandInput | DescribeFraudsterRegistrationJobCommandInput | DescribeSpeakerCommandInput | DescribeSpeakerEnrollmentJobCommandInput | EvaluateSessionCommandInput | ListDomainsCommandInput | ListFraudsterRegistrationJobsCommandInput | ListSpeakerEnrollmentJobsCommandInput | ListSpeakersCommandInput | ListTagsForResourceCommandInput | OptOutSpeakerCommandInput | StartFraudsterRegistrationJobCommandInput | StartSpeakerEnrollmentJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDomainCommandInput;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
33
39
|
export type ServiceOutputTypes = CreateDomainCommandOutput | DeleteDomainCommandOutput | DeleteFraudsterCommandOutput | DeleteSpeakerCommandOutput | DescribeDomainCommandOutput | DescribeFraudsterCommandOutput | DescribeFraudsterRegistrationJobCommandOutput | DescribeSpeakerCommandOutput | DescribeSpeakerEnrollmentJobCommandOutput | EvaluateSessionCommandOutput | ListDomainsCommandOutput | ListFraudsterRegistrationJobsCommandOutput | ListSpeakerEnrollmentJobsCommandOutput | ListSpeakersCommandOutput | ListTagsForResourceCommandOutput | OptOutSpeakerCommandOutput | StartFraudsterRegistrationJobCommandOutput | StartSpeakerEnrollmentJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDomainCommandOutput;
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
34
43
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
35
44
|
/**
|
|
36
45
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
37
46
|
*/
|
|
38
47
|
requestHandler?: __HttpHandler;
|
|
39
48
|
/**
|
|
40
|
-
* A constructor for a class implementing the {@link
|
|
49
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
41
50
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
42
51
|
* @internal
|
|
43
52
|
*/
|
|
@@ -127,23 +136,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
127
136
|
*/
|
|
128
137
|
logger?: __Logger;
|
|
129
138
|
/**
|
|
130
|
-
* The {@link
|
|
139
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
131
140
|
*/
|
|
132
141
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
133
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
134
146
|
type VoiceIDClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
135
147
|
/**
|
|
136
|
-
*
|
|
148
|
+
* @public
|
|
149
|
+
*
|
|
150
|
+
* The configuration interface of VoiceIDClient class constructor that set the region, credentials and other options.
|
|
137
151
|
*/
|
|
138
152
|
export interface VoiceIDClientConfig extends VoiceIDClientConfigType {
|
|
139
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
140
157
|
type VoiceIDClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
141
158
|
/**
|
|
142
|
-
*
|
|
159
|
+
* @public
|
|
160
|
+
*
|
|
161
|
+
* The resolved configuration interface of VoiceIDClient class. This is resolved and normalized from the {@link VoiceIDClientConfig | constructor configuration interface}.
|
|
143
162
|
*/
|
|
144
163
|
export interface VoiceIDClientResolvedConfig extends VoiceIDClientResolvedConfigType {
|
|
145
164
|
}
|
|
146
165
|
/**
|
|
166
|
+
* @public
|
|
147
167
|
* <p>Amazon Connect Voice ID provides real-time caller authentication and fraud screening. This guide
|
|
148
168
|
* describes the APIs used for this service. </p>
|
|
149
169
|
*/
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDomainCommandInput extends CreateDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDomainCommandOutput extends CreateDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a domain that contains all Amazon Connect Voice ID data, such as speakers, fraudsters,
|
|
18
23
|
* customer audio, and voiceprints. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateDomainCommandInput - {@link CreateDomainCommandInput}
|
|
35
|
+
* @returns {@link CreateDomainCommandOutput}
|
|
29
36
|
* @see {@link CreateDomainCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateDomainCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
63
70
|
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
64
71
|
readonly input: CreateDomainCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: CreateDomainCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainCommandInput, CreateDomainCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteDomainRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDomainCommandInput extends DeleteDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified domain from Voice ID.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDomainCommandInput - {@link DeleteDomainCommandInput}
|
|
34
|
+
* @returns {@link DeleteDomainCommandOutput}
|
|
28
35
|
* @see {@link DeleteDomainCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDomainCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
60
67
|
readonly input: DeleteDomainCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DeleteDomainCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteFraudsterRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFraudsterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFraudsterCommandInput extends DeleteFraudsterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFraudsterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified fraudster from Voice ID.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteFraudsterCommandInput - {@link DeleteFraudsterCommandInput}
|
|
34
|
+
* @returns {@link DeleteFraudsterCommandOutput}
|
|
28
35
|
* @see {@link DeleteFraudsterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteFraudsterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class DeleteFraudsterCommand extends $Command<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
|
|
60
67
|
readonly input: DeleteFraudsterCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DeleteFraudsterCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSpeakerRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSpeakerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSpeakerCommandInput extends DeleteSpeakerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSpeakerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified speaker from Voice ID.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteSpeakerCommandInput - {@link DeleteSpeakerCommandInput}
|
|
34
|
+
* @returns {@link DeleteSpeakerCommandOutput}
|
|
28
35
|
* @see {@link DeleteSpeakerCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteSpeakerCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class DeleteSpeakerCommand extends $Command<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
|
|
60
67
|
readonly input: DeleteSpeakerCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DeleteSpeakerCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|