@aws-sdk/client-voice-id 3.50.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/VoiceIDServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +103 -2
- package/dist-cjs/protocols/Aws_json1_0.js +235 -947
- package/dist-es/index.js +1 -0
- package/dist-es/models/VoiceIDServiceException.js +12 -0
- package/dist-es/models/models_0.js +95 -1
- package/dist-es/protocols/Aws_json1_0.js +520 -1018
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/VoiceIDServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/ts3.4/VoiceID.d.ts +110 -0
- package/dist-types/ts3.4/VoiceIDClient.d.ts +94 -0
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteFraudsterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSpeakerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFraudsterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFraudsterRegistrationJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeSpeakerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EvaluateSessionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFraudsterRegistrationJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSpeakerEnrollmentJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSpeakersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/OptOutSpeakerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartFraudsterRegistrationJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartSpeakerEnrollmentJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/VoiceIDServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +919 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListSpeakersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +65 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from VoiceID service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class VoiceIDServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient permissions to perform this action. Check the error message and try
|
|
4
5
|
* again.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccessDeniedException";
|
|
8
|
-
$fault: "client";
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
9
10
|
Message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
15
|
}
|
|
11
16
|
/**
|
|
12
17
|
* <p>The configuration used to authenticate a speaker during a session.</p>
|
|
@@ -95,9 +100,9 @@ export declare enum ConflictType {
|
|
|
95
100
|
* <p>The request failed due to a conflict. Check the <code>ConflictType</code> and error message for
|
|
96
101
|
* more details.</p>
|
|
97
102
|
*/
|
|
98
|
-
export
|
|
99
|
-
name: "ConflictException";
|
|
100
|
-
$fault: "client";
|
|
103
|
+
export declare class ConflictException extends __BaseException {
|
|
104
|
+
readonly name: "ConflictException";
|
|
105
|
+
readonly $fault: "client";
|
|
101
106
|
Message?: string;
|
|
102
107
|
/**
|
|
103
108
|
* <p>The type of conflict which caused a ConflictException. Possible types and the corresponding error messages
|
|
@@ -130,6 +135,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
130
135
|
* </ul>
|
|
131
136
|
*/
|
|
132
137
|
ConflictType?: ConflictType | string;
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
*/
|
|
141
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
133
142
|
}
|
|
134
143
|
/**
|
|
135
144
|
* <p>The configuration containing information about the customer-managed KMS Key used for encrypting
|
|
@@ -266,10 +275,14 @@ export declare namespace CreateDomainResponse {
|
|
|
266
275
|
/**
|
|
267
276
|
* <p>The request failed due to an unknown error on the server side.</p>
|
|
268
277
|
*/
|
|
269
|
-
export
|
|
270
|
-
name: "InternalServerException";
|
|
271
|
-
$fault: "server";
|
|
278
|
+
export declare class InternalServerException extends __BaseException {
|
|
279
|
+
readonly name: "InternalServerException";
|
|
280
|
+
readonly $fault: "server";
|
|
272
281
|
Message?: string;
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
*/
|
|
285
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
273
286
|
}
|
|
274
287
|
export declare enum ResourceType {
|
|
275
288
|
BATCH_JOB = "BATCH_JOB",
|
|
@@ -283,24 +296,32 @@ export declare enum ResourceType {
|
|
|
283
296
|
* <p>The specified resource cannot be found. Check the <code>ResourceType</code> and error message for
|
|
284
297
|
* more details.</p>
|
|
285
298
|
*/
|
|
286
|
-
export
|
|
287
|
-
name: "ResourceNotFoundException";
|
|
288
|
-
$fault: "client";
|
|
299
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
300
|
+
readonly name: "ResourceNotFoundException";
|
|
301
|
+
readonly $fault: "client";
|
|
289
302
|
Message?: string;
|
|
290
303
|
/**
|
|
291
304
|
* <p>The type of resource which cannot not be found. Possible types are <code>BATCH_JOB</code>, <code>COMPLIANCE_CONSENT</code>,
|
|
292
305
|
* <code>DOMAIN</code>, <code>FRAUDSTER</code>, <code>SESSION</code> and <code>SPEAKER</code>.</p>
|
|
293
306
|
*/
|
|
294
307
|
ResourceType?: ResourceType | string;
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
295
312
|
}
|
|
296
313
|
/**
|
|
297
314
|
* <p>The request exceeded the service quota. Refer to <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#voiceid-quotas">Voice ID Service
|
|
298
315
|
* Quotas</a> and try your request again.</p>
|
|
299
316
|
*/
|
|
300
|
-
export
|
|
301
|
-
name: "ServiceQuotaExceededException";
|
|
302
|
-
$fault: "client";
|
|
317
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
318
|
+
readonly name: "ServiceQuotaExceededException";
|
|
319
|
+
readonly $fault: "client";
|
|
303
320
|
Message?: string;
|
|
321
|
+
/**
|
|
322
|
+
* @internal
|
|
323
|
+
*/
|
|
324
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
304
325
|
}
|
|
305
326
|
/**
|
|
306
327
|
* <p>The request was denied due to request throttling. Please slow down your request rate. Refer to
|
|
@@ -308,18 +329,26 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
308
329
|
* Amazon Connect Voice ID Service API throttling quotas
|
|
309
330
|
* </a> and try your request again.</p>
|
|
310
331
|
*/
|
|
311
|
-
export
|
|
312
|
-
name: "ThrottlingException";
|
|
313
|
-
$fault: "client";
|
|
332
|
+
export declare class ThrottlingException extends __BaseException {
|
|
333
|
+
readonly name: "ThrottlingException";
|
|
334
|
+
readonly $fault: "client";
|
|
314
335
|
Message?: string;
|
|
336
|
+
/**
|
|
337
|
+
* @internal
|
|
338
|
+
*/
|
|
339
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
315
340
|
}
|
|
316
341
|
/**
|
|
317
342
|
* <p>The request failed one or more validations; check the error message for more details.</p>
|
|
318
343
|
*/
|
|
319
|
-
export
|
|
320
|
-
name: "ValidationException";
|
|
321
|
-
$fault: "client";
|
|
344
|
+
export declare class ValidationException extends __BaseException {
|
|
345
|
+
readonly name: "ValidationException";
|
|
346
|
+
readonly $fault: "client";
|
|
322
347
|
Message?: string;
|
|
348
|
+
/**
|
|
349
|
+
* @internal
|
|
350
|
+
*/
|
|
351
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
323
352
|
}
|
|
324
353
|
export interface DeleteDomainRequest {
|
|
325
354
|
/**
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
3
|
+
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
4
|
+
import { DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput } from "./commands/DeleteFraudsterCommand";
|
|
5
|
+
import { DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput } from "./commands/DeleteSpeakerCommand";
|
|
6
|
+
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "./commands/DescribeDomainCommand";
|
|
7
|
+
import { DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput } from "./commands/DescribeFraudsterCommand";
|
|
8
|
+
import { DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput } from "./commands/DescribeFraudsterRegistrationJobCommand";
|
|
9
|
+
import { DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput } from "./commands/DescribeSpeakerCommand";
|
|
10
|
+
import { DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput } from "./commands/DescribeSpeakerEnrollmentJobCommand";
|
|
11
|
+
import { EvaluateSessionCommandInput, EvaluateSessionCommandOutput } from "./commands/EvaluateSessionCommand";
|
|
12
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
13
|
+
import { ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput } from "./commands/ListFraudsterRegistrationJobsCommand";
|
|
14
|
+
import { ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput } from "./commands/ListSpeakerEnrollmentJobsCommand";
|
|
15
|
+
import { ListSpeakersCommandInput, ListSpeakersCommandOutput } from "./commands/ListSpeakersCommand";
|
|
16
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
17
|
+
import { OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput } from "./commands/OptOutSpeakerCommand";
|
|
18
|
+
import { StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput } from "./commands/StartFraudsterRegistrationJobCommand";
|
|
19
|
+
import { StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput } from "./commands/StartSpeakerEnrollmentJobCommand";
|
|
20
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
21
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
22
|
+
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
23
|
+
import { VoiceIDClient } from "./VoiceIDClient";
|
|
24
|
+
|
|
25
|
+
export declare class VoiceID extends VoiceIDClient {
|
|
26
|
+
|
|
27
|
+
createDomain(args: CreateDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainCommandOutput>;
|
|
28
|
+
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
29
|
+
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
30
|
+
|
|
31
|
+
deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
|
|
32
|
+
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
33
|
+
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
34
|
+
|
|
35
|
+
deleteFraudster(args: DeleteFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFraudsterCommandOutput>;
|
|
36
|
+
deleteFraudster(args: DeleteFraudsterCommandInput, cb: (err: any, data?: DeleteFraudsterCommandOutput) => void): void;
|
|
37
|
+
deleteFraudster(args: DeleteFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFraudsterCommandOutput) => void): void;
|
|
38
|
+
|
|
39
|
+
deleteSpeaker(args: DeleteSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSpeakerCommandOutput>;
|
|
40
|
+
deleteSpeaker(args: DeleteSpeakerCommandInput, cb: (err: any, data?: DeleteSpeakerCommandOutput) => void): void;
|
|
41
|
+
deleteSpeaker(args: DeleteSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSpeakerCommandOutput) => void): void;
|
|
42
|
+
|
|
43
|
+
describeDomain(args: DescribeDomainCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDomainCommandOutput>;
|
|
44
|
+
describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
45
|
+
describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
describeFraudster(args: DescribeFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFraudsterCommandOutput>;
|
|
48
|
+
describeFraudster(args: DescribeFraudsterCommandInput, cb: (err: any, data?: DescribeFraudsterCommandOutput) => void): void;
|
|
49
|
+
describeFraudster(args: DescribeFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFraudsterCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFraudsterRegistrationJobCommandOutput>;
|
|
52
|
+
describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, cb: (err: any, data?: DescribeFraudsterRegistrationJobCommandOutput) => void): void;
|
|
53
|
+
describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFraudsterRegistrationJobCommandOutput) => void): void;
|
|
54
|
+
|
|
55
|
+
describeSpeaker(args: DescribeSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpeakerCommandOutput>;
|
|
56
|
+
describeSpeaker(args: DescribeSpeakerCommandInput, cb: (err: any, data?: DescribeSpeakerCommandOutput) => void): void;
|
|
57
|
+
describeSpeaker(args: DescribeSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpeakerCommandOutput) => void): void;
|
|
58
|
+
|
|
59
|
+
describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpeakerEnrollmentJobCommandOutput>;
|
|
60
|
+
describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, cb: (err: any, data?: DescribeSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
61
|
+
describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
62
|
+
|
|
63
|
+
evaluateSession(args: EvaluateSessionCommandInput, options?: __HttpHandlerOptions): Promise<EvaluateSessionCommandOutput>;
|
|
64
|
+
evaluateSession(args: EvaluateSessionCommandInput, cb: (err: any, data?: EvaluateSessionCommandOutput) => void): void;
|
|
65
|
+
evaluateSession(args: EvaluateSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EvaluateSessionCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
|
|
68
|
+
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
69
|
+
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
70
|
+
|
|
71
|
+
listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListFraudsterRegistrationJobsCommandOutput>;
|
|
72
|
+
listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, cb: (err: any, data?: ListFraudsterRegistrationJobsCommandOutput) => void): void;
|
|
73
|
+
listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFraudsterRegistrationJobsCommandOutput) => void): void;
|
|
74
|
+
|
|
75
|
+
listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSpeakerEnrollmentJobsCommandOutput>;
|
|
76
|
+
listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, cb: (err: any, data?: ListSpeakerEnrollmentJobsCommandOutput) => void): void;
|
|
77
|
+
listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpeakerEnrollmentJobsCommandOutput) => void): void;
|
|
78
|
+
|
|
79
|
+
listSpeakers(args: ListSpeakersCommandInput, options?: __HttpHandlerOptions): Promise<ListSpeakersCommandOutput>;
|
|
80
|
+
listSpeakers(args: ListSpeakersCommandInput, cb: (err: any, data?: ListSpeakersCommandOutput) => void): void;
|
|
81
|
+
listSpeakers(args: ListSpeakersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpeakersCommandOutput) => void): void;
|
|
82
|
+
|
|
83
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
84
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
85
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
86
|
+
|
|
87
|
+
optOutSpeaker(args: OptOutSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<OptOutSpeakerCommandOutput>;
|
|
88
|
+
optOutSpeaker(args: OptOutSpeakerCommandInput, cb: (err: any, data?: OptOutSpeakerCommandOutput) => void): void;
|
|
89
|
+
optOutSpeaker(args: OptOutSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: OptOutSpeakerCommandOutput) => void): void;
|
|
90
|
+
|
|
91
|
+
startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, options?: __HttpHandlerOptions): Promise<StartFraudsterRegistrationJobCommandOutput>;
|
|
92
|
+
startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, cb: (err: any, data?: StartFraudsterRegistrationJobCommandOutput) => void): void;
|
|
93
|
+
startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFraudsterRegistrationJobCommandOutput) => void): void;
|
|
94
|
+
|
|
95
|
+
startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, options?: __HttpHandlerOptions): Promise<StartSpeakerEnrollmentJobCommandOutput>;
|
|
96
|
+
startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, cb: (err: any, data?: StartSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
97
|
+
startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSpeakerEnrollmentJobCommandOutput) => void): void;
|
|
98
|
+
|
|
99
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
100
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
101
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
102
|
+
|
|
103
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
104
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
105
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
106
|
+
|
|
107
|
+
updateDomain(args: UpdateDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainCommandOutput>;
|
|
108
|
+
updateDomain(args: UpdateDomainCommandInput, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
|
|
109
|
+
updateDomain(args: UpdateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
|
|
110
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
10
|
+
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
11
|
+
import { DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput } from "./commands/DeleteFraudsterCommand";
|
|
12
|
+
import { DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput } from "./commands/DeleteSpeakerCommand";
|
|
13
|
+
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "./commands/DescribeDomainCommand";
|
|
14
|
+
import { DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput } from "./commands/DescribeFraudsterCommand";
|
|
15
|
+
import { DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput } from "./commands/DescribeFraudsterRegistrationJobCommand";
|
|
16
|
+
import { DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput } from "./commands/DescribeSpeakerCommand";
|
|
17
|
+
import { DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput } from "./commands/DescribeSpeakerEnrollmentJobCommand";
|
|
18
|
+
import { EvaluateSessionCommandInput, EvaluateSessionCommandOutput } from "./commands/EvaluateSessionCommand";
|
|
19
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
20
|
+
import { ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput } from "./commands/ListFraudsterRegistrationJobsCommand";
|
|
21
|
+
import { ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput } from "./commands/ListSpeakerEnrollmentJobsCommand";
|
|
22
|
+
import { ListSpeakersCommandInput, ListSpeakersCommandOutput } from "./commands/ListSpeakersCommand";
|
|
23
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import { OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput } from "./commands/OptOutSpeakerCommand";
|
|
25
|
+
import { StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput } from "./commands/StartFraudsterRegistrationJobCommand";
|
|
26
|
+
import { StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput } from "./commands/StartSpeakerEnrollmentJobCommand";
|
|
27
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
|
+
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
30
|
+
export declare type ServiceInputTypes = CreateDomainCommandInput | DeleteDomainCommandInput | DeleteFraudsterCommandInput | DeleteSpeakerCommandInput | DescribeDomainCommandInput | DescribeFraudsterCommandInput | DescribeFraudsterRegistrationJobCommandInput | DescribeSpeakerCommandInput | DescribeSpeakerEnrollmentJobCommandInput | EvaluateSessionCommandInput | ListDomainsCommandInput | ListFraudsterRegistrationJobsCommandInput | ListSpeakerEnrollmentJobsCommandInput | ListSpeakersCommandInput | ListTagsForResourceCommandInput | OptOutSpeakerCommandInput | StartFraudsterRegistrationJobCommandInput | StartSpeakerEnrollmentJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDomainCommandInput;
|
|
31
|
+
export declare type ServiceOutputTypes = CreateDomainCommandOutput | DeleteDomainCommandOutput | DeleteFraudsterCommandOutput | DeleteSpeakerCommandOutput | DescribeDomainCommandOutput | DescribeFraudsterCommandOutput | DescribeFraudsterRegistrationJobCommandOutput | DescribeSpeakerCommandOutput | DescribeSpeakerEnrollmentJobCommandOutput | EvaluateSessionCommandOutput | ListDomainsCommandOutput | ListFraudsterRegistrationJobsCommandOutput | ListSpeakerEnrollmentJobsCommandOutput | ListSpeakersCommandOutput | ListTagsForResourceCommandOutput | OptOutSpeakerCommandOutput | StartFraudsterRegistrationJobCommandOutput | StartSpeakerEnrollmentJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDomainCommandOutput;
|
|
32
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
|
+
|
|
34
|
+
requestHandler?: __HttpHandler;
|
|
35
|
+
|
|
36
|
+
sha256?: __HashConstructor;
|
|
37
|
+
|
|
38
|
+
urlParser?: __UrlParser;
|
|
39
|
+
|
|
40
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
41
|
+
|
|
42
|
+
streamCollector?: __StreamCollector;
|
|
43
|
+
|
|
44
|
+
base64Decoder?: __Decoder;
|
|
45
|
+
|
|
46
|
+
base64Encoder?: __Encoder;
|
|
47
|
+
|
|
48
|
+
utf8Decoder?: __Decoder;
|
|
49
|
+
|
|
50
|
+
utf8Encoder?: __Encoder;
|
|
51
|
+
|
|
52
|
+
runtime?: string;
|
|
53
|
+
|
|
54
|
+
disableHostPrefix?: boolean;
|
|
55
|
+
|
|
56
|
+
maxAttempts?: number | __Provider<number>;
|
|
57
|
+
|
|
58
|
+
retryMode?: string | __Provider<string>;
|
|
59
|
+
|
|
60
|
+
logger?: __Logger;
|
|
61
|
+
|
|
62
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
63
|
+
|
|
64
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
65
|
+
|
|
66
|
+
serviceId?: string;
|
|
67
|
+
|
|
68
|
+
region?: string | __Provider<string>;
|
|
69
|
+
|
|
70
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
71
|
+
|
|
72
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
73
|
+
|
|
74
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
75
|
+
|
|
76
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
77
|
+
}
|
|
78
|
+
declare type VoiceIDClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
79
|
+
|
|
80
|
+
export interface VoiceIDClientConfig extends VoiceIDClientConfigType {
|
|
81
|
+
}
|
|
82
|
+
declare type VoiceIDClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
83
|
+
|
|
84
|
+
export interface VoiceIDClientResolvedConfig extends VoiceIDClientResolvedConfigType {
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export declare class VoiceIDClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig> {
|
|
88
|
+
|
|
89
|
+
readonly config: VoiceIDClientResolvedConfig;
|
|
90
|
+
constructor(configuration: VoiceIDClientConfig);
|
|
91
|
+
|
|
92
|
+
destroy(): void;
|
|
93
|
+
}
|
|
94
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface CreateDomainCommandInput extends CreateDomainRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDomainCommandOutput extends CreateDomainResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDomainCommandInput;
|
|
12
|
+
constructor(input: CreateDomainCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainCommandInput, CreateDomainCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteDomainRequest } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DeleteDomainCommandInput extends DeleteDomainRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteDomainCommandInput;
|
|
12
|
+
constructor(input: DeleteDomainCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteFraudsterRequest } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DeleteFraudsterCommandInput extends DeleteFraudsterRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteFraudsterCommand extends $Command<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteFraudsterCommandInput;
|
|
12
|
+
constructor(input: DeleteFraudsterCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteSpeakerRequest } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DeleteSpeakerCommandInput extends DeleteSpeakerRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteSpeakerCommand extends $Command<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteSpeakerCommandInput;
|
|
12
|
+
constructor(input: DeleteSpeakerCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DescribeDomainCommandInput extends DescribeDomainRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeDomainCommandInput;
|
|
12
|
+
constructor(input: DescribeDomainCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeFraudsterRequest, DescribeFraudsterResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DescribeFraudsterCommandInput extends DescribeFraudsterRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeFraudsterCommandOutput extends DescribeFraudsterResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeFraudsterCommand extends $Command<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeFraudsterCommandInput;
|
|
12
|
+
constructor(input: DescribeFraudsterCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeFraudsterRegistrationJobRequest, DescribeFraudsterRegistrationJobResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DescribeFraudsterRegistrationJobCommandInput extends DescribeFraudsterRegistrationJobRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeFraudsterRegistrationJobResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeFraudsterRegistrationJobCommand extends $Command<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeFraudsterRegistrationJobCommandInput;
|
|
12
|
+
constructor(input: DescribeFraudsterRegistrationJobCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeSpeakerRequest, DescribeSpeakerResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DescribeSpeakerCommandInput extends DescribeSpeakerRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeSpeakerCommand extends $Command<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeSpeakerCommandInput;
|
|
12
|
+
constructor(input: DescribeSpeakerCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeSpeakerEnrollmentJobRequest, DescribeSpeakerEnrollmentJobResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface DescribeSpeakerEnrollmentJobCommandInput extends DescribeSpeakerEnrollmentJobRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeakerEnrollmentJobResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeSpeakerEnrollmentJobCommand extends $Command<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeSpeakerEnrollmentJobCommandInput;
|
|
12
|
+
constructor(input: DescribeSpeakerEnrollmentJobCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { EvaluateSessionRequest, EvaluateSessionResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface EvaluateSessionCommandInput extends EvaluateSessionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class EvaluateSessionCommand extends $Command<EvaluateSessionCommandInput, EvaluateSessionCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: EvaluateSessionCommandInput;
|
|
12
|
+
constructor(input: EvaluateSessionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EvaluateSessionCommandInput, EvaluateSessionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface ListDomainsCommandInput extends ListDomainsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: ListDomainsCommandInput;
|
|
12
|
+
constructor(input: ListDomainsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListFraudsterRegistrationJobsRequest, ListFraudsterRegistrationJobsResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface ListFraudsterRegistrationJobsCommandInput extends ListFraudsterRegistrationJobsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudsterRegistrationJobsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListFraudsterRegistrationJobsCommand extends $Command<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: ListFraudsterRegistrationJobsCommandInput;
|
|
12
|
+
constructor(input: ListFraudsterRegistrationJobsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListSpeakerEnrollmentJobsRequest, ListSpeakerEnrollmentJobsResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface ListSpeakerEnrollmentJobsCommandInput extends ListSpeakerEnrollmentJobsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrollmentJobsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListSpeakerEnrollmentJobsCommand extends $Command<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: ListSpeakerEnrollmentJobsCommandInput;
|
|
12
|
+
constructor(input: ListSpeakerEnrollmentJobsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListSpeakersRequest, ListSpeakersResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
5
|
+
export interface ListSpeakersCommandInput extends ListSpeakersRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListSpeakersCommand extends $Command<ListSpeakersCommandInput, ListSpeakersCommandOutput, VoiceIDClientResolvedConfig> {
|
|
11
|
+
readonly input: ListSpeakersCommandInput;
|
|
12
|
+
constructor(input: ListSpeakersCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSpeakersCommandInput, ListSpeakersCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|