@aws-sdk/client-voice-id 3.296.0 → 3.298.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/DeleteDomainCommand.js +2 -3
- package/dist-cjs/commands/DeleteFraudsterCommand.js +1 -1
- package/dist-cjs/commands/DeleteSpeakerCommand.js +1 -1
- package/dist-cjs/commands/DescribeDomainCommand.js +1 -1
- package/dist-cjs/commands/DescribeFraudsterCommand.js +1 -1
- package/dist-cjs/commands/DescribeFraudsterRegistrationJobCommand.js +1 -1
- package/dist-cjs/commands/DescribeSpeakerEnrollmentJobCommand.js +1 -1
- package/dist-cjs/commands/EvaluateSessionCommand.js +1 -1
- package/dist-cjs/commands/ListDomainsCommand.js +1 -1
- package/dist-cjs/commands/ListFraudsterRegistrationJobsCommand.js +1 -1
- package/dist-cjs/commands/ListSpeakerEnrollmentJobsCommand.js +1 -1
- package/dist-cjs/commands/ListSpeakersCommand.js +1 -1
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/models/models_0.js +2 -118
- package/dist-es/commands/DeleteDomainCommand.js +2 -3
- package/dist-es/commands/DeleteFraudsterCommand.js +1 -1
- package/dist-es/commands/DeleteSpeakerCommand.js +1 -1
- package/dist-es/commands/DescribeDomainCommand.js +2 -2
- package/dist-es/commands/DescribeFraudsterCommand.js +2 -2
- package/dist-es/commands/DescribeFraudsterRegistrationJobCommand.js +2 -2
- package/dist-es/commands/DescribeSpeakerEnrollmentJobCommand.js +2 -2
- package/dist-es/commands/EvaluateSessionCommand.js +2 -2
- package/dist-es/commands/ListDomainsCommand.js +2 -2
- package/dist-es/commands/ListFraudsterRegistrationJobsCommand.js +2 -2
- package/dist-es/commands/ListSpeakerEnrollmentJobsCommand.js +2 -2
- package/dist-es/commands/ListSpeakersCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/models/models_0.js +0 -87
- package/dist-types/VoiceID.d.ts +22 -0
- package/dist-types/VoiceIDClient.d.ts +24 -4
- package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFraudsterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSpeakerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFraudsterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFraudsterRegistrationJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSpeakerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +16 -0
- package/dist-types/commands/EvaluateSessionCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListSpeakersCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/OptOutSpeakerCommand.d.ts +16 -0
- package/dist-types/commands/StartFraudsterRegistrationJobCommand.d.ts +16 -0
- package/dist-types/commands/StartSpeakerEnrollmentJobCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +16 -0
- package/dist-types/models/VoiceIDServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +193 -117
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSpeakersPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -83
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { StartSpeakerEnrollmentJobRequest, StartSpeakerEnrollmentJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartSpeakerEnrollmentJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartSpeakerEnrollmentJobCommandInput extends StartSpeakerEnrollmentJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartSpeakerEnrollmentJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnrollmentJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a new batch speaker enrollment job using specified details.</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 StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartSpeakerEnrollmentJobCommandInput - {@link StartSpeakerEnrollmentJobCommandInput}
|
|
34
|
+
* @returns {@link StartSpeakerEnrollmentJobCommandOutput}
|
|
28
35
|
* @see {@link StartSpeakerEnrollmentJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartSpeakerEnrollmentJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro
|
|
|
62
69
|
export declare class StartSpeakerEnrollmentJobCommand extends $Command<StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig> {
|
|
63
70
|
readonly input: StartSpeakerEnrollmentJobCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: StartSpeakerEnrollmentJobCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Tags a Voice ID resource with the provided list of tags.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
59
66
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, VoiceIDClientResolvedConfig> {
|
|
60
67
|
readonly input: TagResourceCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: TagResourceCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes specified tags from a specified Amazon Connect Voice ID resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
59
66
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, VoiceIDClientResolvedConfig> {
|
|
60
67
|
readonly input: UntagResourceCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: UntagResourceCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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 { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDomainCommandInput extends UpdateDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified domain. This API has clobber behavior, and clears and replaces
|
|
18
23
|
* all attributes. If an optional field, such as 'Description' is not provided, it is
|
|
19
24
|
* removed from the domain.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateDomainCommandInput - {@link UpdateDomainCommandInput}
|
|
36
|
+
* @returns {@link UpdateDomainCommandOutput}
|
|
30
37
|
* @see {@link UpdateDomainCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateDomainCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
|
|
|
61
68
|
export declare class UpdateDomainCommand extends $Command<UpdateDomainCommandInput, UpdateDomainCommandOutput, VoiceIDClientResolvedConfig> {
|
|
62
69
|
readonly input: UpdateDomainCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: UpdateDomainCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDomainCommandInput, UpdateDomainCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from VoiceID service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class VoiceIDServiceException extends __ServiceException {
|