@aws-sdk/client-voice-id 3.533.0 → 3.535.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 +2 -1
- package/dist-types/VoiceIDClient.d.ts +1 -1
- package/dist-types/commands/AssociateFraudsterCommand.d.ts +2 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +2 -1
- package/dist-types/commands/CreateWatchlistCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDomainCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFraudsterCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSpeakerCommand.d.ts +2 -1
- package/dist-types/commands/DeleteWatchlistCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDomainCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFraudsterCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFraudsterRegistrationJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSpeakerCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeWatchlistCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateFraudsterCommand.d.ts +2 -1
- package/dist-types/commands/EvaluateSessionCommand.d.ts +2 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +2 -1
- package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListFraudstersCommand.d.ts +2 -1
- package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListSpeakersCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListWatchlistsCommand.d.ts +2 -1
- package/dist-types/commands/OptOutSpeakerCommand.d.ts +2 -1
- package/dist-types/commands/StartFraudsterRegistrationJobCommand.d.ts +2 -1
- package/dist-types/commands/StartSpeakerEnrollmentJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWatchlistCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +297 -297
- package/dist-types/ts3.4/VoiceID.d.ts +1 -0
- package/dist-types/ts3.4/commands/AssociateFraudsterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateWatchlistCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteFraudsterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSpeakerCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteWatchlistCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFraudsterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFraudsterRegistrationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeSpeakerCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeWatchlistCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DisassociateFraudsterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/EvaluateSessionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFraudsterRegistrationJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFraudstersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSpeakerEnrollmentJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSpeakersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListWatchlistsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/OptOutSpeakerCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartFraudsterRegistrationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartSpeakerEnrollmentJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateWatchlistCommand.d.ts +9 -0
- package/package.json +40 -40
package/dist-types/VoiceID.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export interface VoiceID {
|
|
|
123
123
|
/**
|
|
124
124
|
* @see {@link ListDomainsCommand}
|
|
125
125
|
*/
|
|
126
|
+
listDomains(): Promise<ListDomainsCommandOutput>;
|
|
126
127
|
listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
|
|
127
128
|
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
128
129
|
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
@@ -206,9 +207,9 @@ export interface VoiceID {
|
|
|
206
207
|
updateWatchlist(args: UpdateWatchlistCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWatchlistCommandOutput) => void): void;
|
|
207
208
|
}
|
|
208
209
|
/**
|
|
209
|
-
* @public
|
|
210
210
|
* <p>Amazon Connect Voice ID provides real-time caller authentication and fraud risk detection, which
|
|
211
211
|
* make voice interactions in contact centers more secure and efficient.</p>
|
|
212
|
+
* @public
|
|
212
213
|
*/
|
|
213
214
|
export declare class VoiceID extends VoiceIDClient implements VoiceID {
|
|
214
215
|
}
|
|
@@ -180,9 +180,9 @@ export type VoiceIDClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
|
|
|
180
180
|
export interface VoiceIDClientResolvedConfig extends VoiceIDClientResolvedConfigType {
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* @public
|
|
184
183
|
* <p>Amazon Connect Voice ID provides real-time caller authentication and fraud risk detection, which
|
|
185
184
|
* make voice interactions in contact centers more secure and efficient.</p>
|
|
185
|
+
* @public
|
|
186
186
|
*/
|
|
187
187
|
export declare class VoiceIDClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig> {
|
|
188
188
|
/**
|
|
@@ -22,10 +22,10 @@ export interface AssociateFraudsterCommandOutput extends AssociateFraudsterRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const AssociateFraudsterCommand_base: {
|
|
24
24
|
new (input: AssociateFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateFraudsterCommandInput, AssociateFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AssociateFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateFraudsterCommandInput, AssociateFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Associates the fraudsters with the watchlist specified in the same domain. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -90,6 +90,7 @@ declare const AssociateFraudsterCommand_base: {
|
|
|
90
90
|
* @throws {@link VoiceIDServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class AssociateFraudsterCommand extends AssociateFraudsterCommand_base {
|
|
95
96
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDomainCommand_base: {
|
|
24
24
|
new (input: CreateDomainCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDomainCommandInput, CreateDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDomainCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDomainCommandInput, CreateDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a domain that contains all Amazon Connect Voice ID data, such as speakers, fraudsters,
|
|
30
30
|
* customer audio, and voiceprints. Every domain is created with a default watchlist that fraudsters can be a part of.</p>
|
|
31
31
|
* @example
|
|
@@ -112,6 +112,7 @@ declare const CreateDomainCommand_base: {
|
|
|
112
112
|
* @throws {@link VoiceIDServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
114
114
|
*
|
|
115
|
+
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class CreateDomainCommand extends CreateDomainCommand_base {
|
|
117
118
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateWatchlistCommandOutput extends CreateWatchlistResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateWatchlistCommand_base: {
|
|
24
24
|
new (input: CreateWatchlistCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWatchlistCommandInput, CreateWatchlistCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateWatchlistCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWatchlistCommandInput, CreateWatchlistCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a watchlist that fraudsters can be a part of.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -92,6 +92,7 @@ declare const CreateWatchlistCommand_base: {
|
|
|
92
92
|
* @throws {@link VoiceIDServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class CreateWatchlistCommand extends CreateWatchlistCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteDomainCommand_base: {
|
|
24
24
|
new (input: DeleteDomainCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDomainCommandInput, DeleteDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteDomainCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDomainCommandInput, DeleteDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified domain from Voice ID.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const DeleteDomainCommand_base: {
|
|
|
76
76
|
* @throws {@link VoiceIDServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class DeleteDomainCommand extends DeleteDomainCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteFraudsterCommand_base: {
|
|
24
24
|
new (input: DeleteFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified fraudster from Voice ID. This action disassociates the fraudster from any watchlists it is a part of.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const DeleteFraudsterCommand_base: {
|
|
|
77
77
|
* @throws {@link VoiceIDServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteFraudsterCommand extends DeleteFraudsterCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteSpeakerCommand_base: {
|
|
24
24
|
new (input: DeleteSpeakerCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteSpeakerCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified speaker from Voice ID.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const DeleteSpeakerCommand_base: {
|
|
|
77
77
|
* @throws {@link VoiceIDServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteSpeakerCommand extends DeleteSpeakerCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteWatchlistCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteWatchlistCommand_base: {
|
|
24
24
|
new (input: DeleteWatchlistCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWatchlistCommandInput, DeleteWatchlistCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteWatchlistCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWatchlistCommandInput, DeleteWatchlistCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified watchlist from Voice ID. This API throws an exception when
|
|
30
30
|
* there are fraudsters in the watchlist that you are trying to delete. You must delete the
|
|
31
31
|
* fraudsters, and then delete the watchlist. Every domain has a default watchlist which cannot be deleted. </p>
|
|
@@ -79,6 +79,7 @@ declare const DeleteWatchlistCommand_base: {
|
|
|
79
79
|
* @throws {@link VoiceIDServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class DeleteWatchlistCommand extends DeleteWatchlistCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeDomainCommand_base: {
|
|
24
24
|
new (input: DescribeDomainCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDomainCommandInput, DescribeDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeDomainCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDomainCommandInput, DescribeDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the specified domain.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const DescribeDomainCommand_base: {
|
|
|
93
93
|
* @throws {@link VoiceIDServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class DescribeDomainCommand extends DescribeDomainCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFraudsterCommandOutput extends DescribeFraudsterRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFraudsterCommand_base: {
|
|
24
24
|
new (input: DescribeFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the specified fraudster.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const DescribeFraudsterCommand_base: {
|
|
|
82
82
|
* @throws {@link VoiceIDServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class DescribeFraudsterCommand extends DescribeFraudsterCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeF
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFraudsterRegistrationJobCommand_base: {
|
|
24
24
|
new (input: DescribeFraudsterRegistrationJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFraudsterRegistrationJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the specified fraudster registration job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -104,6 +104,7 @@ declare const DescribeFraudsterRegistrationJobCommand_base: {
|
|
|
104
104
|
* @throws {@link VoiceIDServiceException}
|
|
105
105
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
106
106
|
*
|
|
107
|
+
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class DescribeFraudsterRegistrationJobCommand extends DescribeFraudsterRegistrationJobCommand_base {
|
|
109
110
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeSpeakerCommand_base: {
|
|
24
24
|
new (input: DescribeSpeakerCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeSpeakerCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the specified speaker.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const DescribeSpeakerCommand_base: {
|
|
|
83
83
|
* @throws {@link VoiceIDServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DescribeSpeakerCommand extends DescribeSpeakerCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeak
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeSpeakerEnrollmentJobCommand_base: {
|
|
24
24
|
new (input: DescribeSpeakerEnrollmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeSpeakerEnrollmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the specified speaker enrollment job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -107,6 +107,7 @@ declare const DescribeSpeakerEnrollmentJobCommand_base: {
|
|
|
107
107
|
* @throws {@link VoiceIDServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
109
109
|
*
|
|
110
|
+
* @public
|
|
110
111
|
*/
|
|
111
112
|
export declare class DescribeSpeakerEnrollmentJobCommand extends DescribeSpeakerEnrollmentJobCommand_base {
|
|
112
113
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeWatchlistCommandOutput extends DescribeWatchlistRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeWatchlistCommand_base: {
|
|
24
24
|
new (input: DescribeWatchlistCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWatchlistCommandInput, DescribeWatchlistCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeWatchlistCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWatchlistCommandInput, DescribeWatchlistCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes the specified watchlist.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const DescribeWatchlistCommand_base: {
|
|
|
83
83
|
* @throws {@link VoiceIDServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DescribeWatchlistCommand extends DescribeWatchlistCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface DisassociateFraudsterCommandOutput extends DisassociateFraudste
|
|
|
22
22
|
}
|
|
23
23
|
declare const DisassociateFraudsterCommand_base: {
|
|
24
24
|
new (input: DisassociateFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateFraudsterCommandInput, DisassociateFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DisassociateFraudsterCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateFraudsterCommandInput, DisassociateFraudsterCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Disassociates the fraudsters from the watchlist specified. Voice ID always expects a
|
|
30
30
|
* fraudster to be a part of at least one watchlist. If
|
|
31
31
|
* you try to disassociate a fraudster from its only watchlist, a <code>ValidationException</code> is thrown.
|
|
@@ -90,6 +90,7 @@ declare const DisassociateFraudsterCommand_base: {
|
|
|
90
90
|
* @throws {@link VoiceIDServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class DisassociateFraudsterCommand extends DisassociateFraudsterCommand_base {
|
|
95
96
|
}
|
|
@@ -22,10 +22,10 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const EvaluateSessionCommand_base: {
|
|
24
24
|
new (input: EvaluateSessionCommandInput): import("@smithy/smithy-client").CommandImpl<EvaluateSessionCommandInput, EvaluateSessionCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: EvaluateSessionCommandInput): import("@smithy/smithy-client").CommandImpl<EvaluateSessionCommandInput, EvaluateSessionCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Evaluates a specified session based on audio data accumulated during a streaming
|
|
30
30
|
* Amazon Connect Voice ID call.</p>
|
|
31
31
|
* @example
|
|
@@ -117,6 +117,7 @@ declare const EvaluateSessionCommand_base: {
|
|
|
117
117
|
* @throws {@link VoiceIDServiceException}
|
|
118
118
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
119
119
|
*
|
|
120
|
+
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class EvaluateSessionCommand extends EvaluateSessionCommand_base {
|
|
122
123
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDomainsCommand_base: {
|
|
24
24
|
new (input: ListDomainsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDomainsCommandInput, ListDomainsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDomainsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDomainsCommandInput, ListDomainsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the domains in the Amazon Web Services account. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const ListDomainsCommand_base: {
|
|
|
93
93
|
* @throws {@link VoiceIDServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class ListDomainsCommand extends ListDomainsCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudste
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFraudsterRegistrationJobsCommand_base: {
|
|
24
24
|
new (input: ListFraudsterRegistrationJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListFraudsterRegistrationJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the fraudster registration jobs in the domain with the given
|
|
30
30
|
* <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
|
|
31
31
|
* fraudster registration jobs in the given domain. </p>
|
|
@@ -96,6 +96,7 @@ declare const ListFraudsterRegistrationJobsCommand_base: {
|
|
|
96
96
|
* @throws {@link VoiceIDServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class ListFraudsterRegistrationJobsCommand extends ListFraudsterRegistrationJobsCommand_base {
|
|
101
102
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFraudstersCommandOutput extends ListFraudstersResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFraudstersCommand_base: {
|
|
24
24
|
new (input: ListFraudstersCommandInput): import("@smithy/smithy-client").CommandImpl<ListFraudstersCommandInput, ListFraudstersCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListFraudstersCommandInput): import("@smithy/smithy-client").CommandImpl<ListFraudstersCommandInput, ListFraudstersCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all fraudsters in a specified watchlist or domain.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -87,6 +87,7 @@ declare const ListFraudstersCommand_base: {
|
|
|
87
87
|
* @throws {@link VoiceIDServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListFraudstersCommand extends ListFraudstersCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSpeakerEnrollmentJobsCommand_base: {
|
|
24
24
|
new (input: ListSpeakerEnrollmentJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListSpeakerEnrollmentJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the speaker enrollment jobs in the domain with the specified
|
|
30
30
|
* <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
|
|
31
31
|
* jobs with all possible speaker enrollment job statuses.</p>
|
|
@@ -96,6 +96,7 @@ declare const ListSpeakerEnrollmentJobsCommand_base: {
|
|
|
96
96
|
* @throws {@link VoiceIDServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class ListSpeakerEnrollmentJobsCommand extends ListSpeakerEnrollmentJobsCommand_base {
|
|
101
102
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSpeakersCommand_base: {
|
|
24
24
|
new (input: ListSpeakersCommandInput): import("@smithy/smithy-client").CommandImpl<ListSpeakersCommandInput, ListSpeakersCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListSpeakersCommandInput): import("@smithy/smithy-client").CommandImpl<ListSpeakersCommandInput, ListSpeakersCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all speakers in a specified domain.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -87,6 +87,7 @@ declare const ListSpeakersCommand_base: {
|
|
|
87
87
|
* @throws {@link VoiceIDServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListSpeakersCommand extends ListSpeakersCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all tags associated with a specified Voice ID resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
79
79
|
* @throws {@link VoiceIDServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListWatchlistsCommandOutput extends ListWatchlistsResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListWatchlistsCommand_base: {
|
|
24
24
|
new (input: ListWatchlistsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWatchlistsCommandInput, ListWatchlistsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListWatchlistsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWatchlistsCommandInput, ListWatchlistsCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all watchlists in a specified domain.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -87,6 +87,7 @@ declare const ListWatchlistsCommand_base: {
|
|
|
87
87
|
* @throws {@link VoiceIDServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListWatchlistsCommand extends ListWatchlistsCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const OptOutSpeakerCommand_base: {
|
|
24
24
|
new (input: OptOutSpeakerCommandInput): import("@smithy/smithy-client").CommandImpl<OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: OptOutSpeakerCommandInput): import("@smithy/smithy-client").CommandImpl<OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Opts out a speaker from Voice ID. A speaker can be opted out regardless of whether or
|
|
30
30
|
* not they already exist in Voice ID. If they don't yet exist, a new speaker is created
|
|
31
31
|
* in an opted out state. If they already exist, their existing status is overridden and
|
|
@@ -95,6 +95,7 @@ declare const OptOutSpeakerCommand_base: {
|
|
|
95
95
|
* @throws {@link VoiceIDServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class OptOutSpeakerCommand extends OptOutSpeakerCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartFraudsterRegistrationJobCommandOutput extends StartFraudst
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartFraudsterRegistrationJobCommand_base: {
|
|
24
24
|
new (input: StartFraudsterRegistrationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartFraudsterRegistrationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Starts a new batch fraudster registration job using provided details.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -127,6 +127,7 @@ declare const StartFraudsterRegistrationJobCommand_base: {
|
|
|
127
127
|
* @throws {@link VoiceIDServiceException}
|
|
128
128
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
129
129
|
*
|
|
130
|
+
* @public
|
|
130
131
|
*/
|
|
131
132
|
export declare class StartFraudsterRegistrationJobCommand extends StartFraudsterRegistrationJobCommand_base {
|
|
132
133
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartSpeakerEnrollmentJobCommand_base: {
|
|
24
24
|
new (input: StartSpeakerEnrollmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartSpeakerEnrollmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Starts a new batch speaker enrollment job using specified details.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -133,6 +133,7 @@ declare const StartSpeakerEnrollmentJobCommand_base: {
|
|
|
133
133
|
* @throws {@link VoiceIDServiceException}
|
|
134
134
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
135
135
|
*
|
|
136
|
+
* @public
|
|
136
137
|
*/
|
|
137
138
|
export declare class StartSpeakerEnrollmentJobCommand extends StartSpeakerEnrollmentJobCommand_base {
|
|
138
139
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Tags a Voice ID resource with the provided list of tags.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const TagResourceCommand_base: {
|
|
|
82
82
|
* @throws {@link VoiceIDServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes specified tags from a specified Amazon Connect Voice ID resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const UntagResourceCommand_base: {
|
|
|
79
79
|
* @throws {@link VoiceIDServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateDomainCommand_base: {
|
|
24
24
|
new (input: UpdateDomainCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDomainCommandInput, UpdateDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateDomainCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDomainCommandInput, UpdateDomainCommandOutput, VoiceIDClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the specified domain. This API has clobber behavior, and clears and replaces
|
|
30
30
|
* all attributes. If an optional field, such as 'Description' is not provided, it is
|
|
31
31
|
* removed from the domain.</p>
|
|
@@ -104,6 +104,7 @@ declare const UpdateDomainCommand_base: {
|
|
|
104
104
|
* @throws {@link VoiceIDServiceException}
|
|
105
105
|
* <p>Base exception class for all service exceptions from VoiceID service.</p>
|
|
106
106
|
*
|
|
107
|
+
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class UpdateDomainCommand extends UpdateDomainCommand_base {
|
|
109
110
|
}
|