@aws-sdk/client-voice-id 3.296.0 → 3.297.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-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 -1
- 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/package.json +3 -3
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
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDomainCommandInput extends DescribeDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified domain.</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 DescribeDomainCommandOutput extends DescribeDomainResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeDomainCommandInput - {@link DescribeDomainCommandInput}
|
|
34
|
+
* @returns {@link DescribeDomainCommandOutput}
|
|
28
35
|
* @see {@link DescribeDomainCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeDomainCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
|
|
|
55
62
|
export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeDomainCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeDomainCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDomainCommandInput, DescribeDomainCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeFraudsterRequest, DescribeFraudsterResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFraudsterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFraudsterCommandInput extends DescribeFraudsterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFraudsterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFraudsterCommandOutput extends DescribeFraudsterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified fraudster.</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 DescribeFraudsterCommandOutput extends DescribeFraudsterRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeFraudsterCommandInput - {@link DescribeFraudsterCommandInput}
|
|
34
|
+
* @returns {@link DescribeFraudsterCommandOutput}
|
|
28
35
|
* @see {@link DescribeFraudsterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeFraudsterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeFraudsterCommandOutput extends DescribeFraudsterRespons
|
|
|
55
62
|
export declare class DescribeFraudsterCommand extends $Command<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeFraudsterCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeFraudsterCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeFraudsterRegistrationJobRequest, DescribeFraudsterRegistrationJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFraudsterRegistrationJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFraudsterRegistrationJobCommandInput extends DescribeFraudsterRegistrationJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFraudsterRegistrationJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeFraudsterRegistrationJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified fraudster registration job.</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 DescribeFraudsterRegistrationJobCommandOutput extends DescribeF
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeFraudsterRegistrationJobCommandInput - {@link DescribeFraudsterRegistrationJobCommandInput}
|
|
34
|
+
* @returns {@link DescribeFraudsterRegistrationJobCommandOutput}
|
|
28
35
|
* @see {@link DescribeFraudsterRegistrationJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeFraudsterRegistrationJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeF
|
|
|
55
62
|
export declare class DescribeFraudsterRegistrationJobCommand extends $Command<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeFraudsterRegistrationJobCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeFraudsterRegistrationJobCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeSpeakerRequest, DescribeSpeakerResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSpeakerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSpeakerCommandInput extends DescribeSpeakerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSpeakerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified speaker.</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 DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeSpeakerCommandInput - {@link DescribeSpeakerCommandInput}
|
|
34
|
+
* @returns {@link DescribeSpeakerCommandOutput}
|
|
28
35
|
* @see {@link DescribeSpeakerCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeSpeakerCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _
|
|
|
55
62
|
export declare class DescribeSpeakerCommand extends $Command<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeSpeakerCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeSpeakerCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|