@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 { 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
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeSpeakerEnrollmentJobRequest, DescribeSpeakerEnrollmentJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSpeakerEnrollmentJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSpeakerEnrollmentJobCommandInput extends DescribeSpeakerEnrollmentJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSpeakerEnrollmentJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeakerEnrollmentJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified speaker enrollment 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 DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeak
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeSpeakerEnrollmentJobCommandInput - {@link DescribeSpeakerEnrollmentJobCommandInput}
|
|
34
|
+
* @returns {@link DescribeSpeakerEnrollmentJobCommandOutput}
|
|
28
35
|
* @see {@link DescribeSpeakerEnrollmentJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeSpeakerEnrollmentJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeak
|
|
|
55
62
|
export declare class DescribeSpeakerEnrollmentJobCommand extends $Command<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeSpeakerEnrollmentJobCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeSpeakerEnrollmentJobCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput>;
|
|
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 { EvaluateSessionRequest, EvaluateSessionResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EvaluateSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EvaluateSessionCommandInput extends EvaluateSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EvaluateSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Evaluates a specified session based on audio data accumulated during a streaming
|
|
18
23
|
* Amazon Connect Voice ID call.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param EvaluateSessionCommandInput - {@link EvaluateSessionCommandInput}
|
|
35
|
+
* @returns {@link EvaluateSessionCommandOutput}
|
|
29
36
|
* @see {@link EvaluateSessionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link EvaluateSessionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _
|
|
|
60
67
|
export declare class EvaluateSessionCommand extends $Command<EvaluateSessionCommandInput, EvaluateSessionCommandOutput, VoiceIDClientResolvedConfig> {
|
|
61
68
|
readonly input: EvaluateSessionCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: EvaluateSessionCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EvaluateSessionCommandInput, EvaluateSessionCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDomainsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDomainsCommandInput extends ListDomainsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDomainsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the domains in the Amazon Web Services account. </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 ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDomainsCommandInput - {@link ListDomainsCommandInput}
|
|
34
|
+
* @returns {@link ListDomainsCommandOutput}
|
|
28
35
|
* @see {@link ListDomainsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDomainsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
51
58
|
export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, VoiceIDClientResolvedConfig> {
|
|
52
59
|
readonly input: ListDomainsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListDomainsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListFraudsterRegistrationJobsRequest, ListFraudsterRegistrationJobsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListFraudsterRegistrationJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListFraudsterRegistrationJobsCommandInput extends ListFraudsterRegistrationJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListFraudsterRegistrationJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudsterRegistrationJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the fraudster registration jobs in the domain with the given
|
|
18
23
|
* <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
|
|
19
24
|
* fraudster registration jobs in the given domain. </p>
|
|
@@ -27,6 +32,8 @@ export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudste
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListFraudsterRegistrationJobsCommandInput - {@link ListFraudsterRegistrationJobsCommandInput}
|
|
36
|
+
* @returns {@link ListFraudsterRegistrationJobsCommandOutput}
|
|
30
37
|
* @see {@link ListFraudsterRegistrationJobsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListFraudsterRegistrationJobsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudste
|
|
|
57
64
|
export declare class ListFraudsterRegistrationJobsCommand extends $Command<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput, VoiceIDClientResolvedConfig> {
|
|
58
65
|
readonly input: ListFraudsterRegistrationJobsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: ListFraudsterRegistrationJobsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListSpeakerEnrollmentJobsRequest, ListSpeakerEnrollmentJobsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSpeakerEnrollmentJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSpeakerEnrollmentJobsCommandInput extends ListSpeakerEnrollmentJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSpeakerEnrollmentJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrollmentJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the speaker enrollment jobs in the domain with the specified
|
|
18
23
|
* <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
|
|
19
24
|
* jobs with all possible speaker enrollment job statuses.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListSpeakerEnrollmentJobsCommandInput - {@link ListSpeakerEnrollmentJobsCommandInput}
|
|
36
|
+
* @returns {@link ListSpeakerEnrollmentJobsCommandOutput}
|
|
30
37
|
* @see {@link ListSpeakerEnrollmentJobsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListSpeakerEnrollmentJobsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol
|
|
|
57
64
|
export declare class ListSpeakerEnrollmentJobsCommand extends $Command<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput, VoiceIDClientResolvedConfig> {
|
|
58
65
|
readonly input: ListSpeakerEnrollmentJobsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: ListSpeakerEnrollmentJobsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListSpeakersRequest, ListSpeakersResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSpeakersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSpeakersCommandInput extends ListSpeakersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSpeakersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all speakers in a 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 ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSpeakersCommandInput - {@link ListSpeakersCommandInput}
|
|
34
|
+
* @returns {@link ListSpeakersCommandOutput}
|
|
28
35
|
* @see {@link ListSpeakersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSpeakersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad
|
|
|
55
62
|
export declare class ListSpeakersCommand extends $Command<ListSpeakersCommandInput, ListSpeakersCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: ListSpeakersCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListSpeakersCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSpeakersCommandInput, ListSpeakersCommandOutput>;
|
|
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all tags associated with a specified 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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
55
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, VoiceIDClientResolvedConfig> {
|
|
56
63
|
readonly input: ListTagsForResourceCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListTagsForResourceCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
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 { OptOutSpeakerRequest, OptOutSpeakerResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link OptOutSpeakerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface OptOutSpeakerCommandInput extends OptOutSpeakerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link OptOutSpeakerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Opts out a speaker from Voice ID. A speaker can be opted out regardless of whether or
|
|
18
23
|
* not they already exist in Voice ID. If they don't yet exist, a new speaker is created
|
|
19
24
|
* in an opted out state. If they already exist, their existing status is overridden and
|
|
@@ -30,6 +35,8 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param OptOutSpeakerCommandInput - {@link OptOutSpeakerCommandInput}
|
|
39
|
+
* @returns {@link OptOutSpeakerCommandOutput}
|
|
33
40
|
* @see {@link OptOutSpeakerCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link OptOutSpeakerCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met
|
|
|
67
74
|
export declare class OptOutSpeakerCommand extends $Command<OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
|
|
68
75
|
readonly input: OptOutSpeakerCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: OptOutSpeakerCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { StartFraudsterRegistrationJobRequest, StartFraudsterRegistrationJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartFraudsterRegistrationJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartFraudsterRegistrationJobCommandInput extends StartFraudsterRegistrationJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartFraudsterRegistrationJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartFraudsterRegistrationJobCommandOutput extends StartFraudsterRegistrationJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a new batch fraudster registration job using provided 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 StartFraudsterRegistrationJobCommandOutput extends StartFraudst
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartFraudsterRegistrationJobCommandInput - {@link StartFraudsterRegistrationJobCommandInput}
|
|
34
|
+
* @returns {@link StartFraudsterRegistrationJobCommandOutput}
|
|
28
35
|
* @see {@link StartFraudsterRegistrationJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartFraudsterRegistrationJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link VoiceIDClientResolvedConfig | config} for VoiceIDClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface StartFraudsterRegistrationJobCommandOutput extends StartFraudst
|
|
|
62
69
|
export declare class StartFraudsterRegistrationJobCommand extends $Command<StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig> {
|
|
63
70
|
readonly input: StartFraudsterRegistrationJobCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: StartFraudsterRegistrationJobCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: VoiceIDClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|