@aws-sdk/client-voice-id 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/VoiceID.d.ts +361 -110
- package/dist-types/ts3.4/VoiceIDClient.d.ts +230 -94
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteFraudsterCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteSpeakerCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeFraudsterCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeFraudsterRegistrationJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeSpeakerCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/EvaluateSessionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListFraudsterRegistrationJobsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListSpeakerEnrollmentJobsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListSpeakersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/OptOutSpeakerCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartFraudsterRegistrationJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartSpeakerEnrollmentJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/VoiceIDServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +657 -829
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSpeakersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +257 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeFraudsterRegistrationJobRequest,
|
|
10
|
+
DescribeFraudsterRegistrationJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface DescribeFraudsterRegistrationJobCommandInput
|
|
18
|
+
extends DescribeFraudsterRegistrationJobRequest {}
|
|
19
|
+
export interface DescribeFraudsterRegistrationJobCommandOutput
|
|
20
|
+
extends DescribeFraudsterRegistrationJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeFraudsterRegistrationJobCommand extends $Command<
|
|
23
|
+
DescribeFraudsterRegistrationJobCommandInput,
|
|
24
|
+
DescribeFraudsterRegistrationJobCommandOutput,
|
|
25
|
+
VoiceIDClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeFraudsterRegistrationJobCommandInput;
|
|
28
|
+
constructor(input: DescribeFraudsterRegistrationJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeFraudsterRegistrationJobCommandInput,
|
|
35
|
+
DescribeFraudsterRegistrationJobCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeSpeakerRequest,
|
|
10
|
+
DescribeSpeakerResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface DescribeSpeakerCommandInput extends DescribeSpeakerRequest {}
|
|
18
|
+
export interface DescribeSpeakerCommandOutput
|
|
19
|
+
extends DescribeSpeakerResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeSpeakerCommand extends $Command<
|
|
22
|
+
DescribeSpeakerCommandInput,
|
|
23
|
+
DescribeSpeakerCommandOutput,
|
|
24
|
+
VoiceIDClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeSpeakerCommandInput;
|
|
27
|
+
constructor(input: DescribeSpeakerCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeSpeakerEnrollmentJobRequest,
|
|
10
|
+
DescribeSpeakerEnrollmentJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface DescribeSpeakerEnrollmentJobCommandInput
|
|
18
|
+
extends DescribeSpeakerEnrollmentJobRequest {}
|
|
19
|
+
export interface DescribeSpeakerEnrollmentJobCommandOutput
|
|
20
|
+
extends DescribeSpeakerEnrollmentJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeSpeakerEnrollmentJobCommand extends $Command<
|
|
23
|
+
DescribeSpeakerEnrollmentJobCommandInput,
|
|
24
|
+
DescribeSpeakerEnrollmentJobCommandOutput,
|
|
25
|
+
VoiceIDClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeSpeakerEnrollmentJobCommandInput;
|
|
28
|
+
constructor(input: DescribeSpeakerEnrollmentJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeSpeakerEnrollmentJobCommandInput,
|
|
35
|
+
DescribeSpeakerEnrollmentJobCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EvaluateSessionRequest,
|
|
10
|
+
EvaluateSessionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface EvaluateSessionCommandInput extends EvaluateSessionRequest {}
|
|
18
|
+
export interface EvaluateSessionCommandOutput
|
|
19
|
+
extends EvaluateSessionResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class EvaluateSessionCommand extends $Command<
|
|
22
|
+
EvaluateSessionCommandInput,
|
|
23
|
+
EvaluateSessionCommandOutput,
|
|
24
|
+
VoiceIDClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: EvaluateSessionCommandInput;
|
|
27
|
+
constructor(input: EvaluateSessionCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<EvaluateSessionCommandInput, EvaluateSessionCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
VoiceIDClientResolvedConfig,
|
|
13
|
+
} from "../VoiceIDClient";
|
|
14
|
+
export interface ListDomainsCommandInput extends ListDomainsRequest {}
|
|
15
|
+
export interface ListDomainsCommandOutput
|
|
16
|
+
extends ListDomainsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListDomainsCommand extends $Command<
|
|
19
|
+
ListDomainsCommandInput,
|
|
20
|
+
ListDomainsCommandOutput,
|
|
21
|
+
VoiceIDClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListDomainsCommandInput;
|
|
24
|
+
constructor(input: ListDomainsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListFraudsterRegistrationJobsRequest,
|
|
10
|
+
ListFraudsterRegistrationJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface ListFraudsterRegistrationJobsCommandInput
|
|
18
|
+
extends ListFraudsterRegistrationJobsRequest {}
|
|
19
|
+
export interface ListFraudsterRegistrationJobsCommandOutput
|
|
20
|
+
extends ListFraudsterRegistrationJobsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListFraudsterRegistrationJobsCommand extends $Command<
|
|
23
|
+
ListFraudsterRegistrationJobsCommandInput,
|
|
24
|
+
ListFraudsterRegistrationJobsCommandOutput,
|
|
25
|
+
VoiceIDClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListFraudsterRegistrationJobsCommandInput;
|
|
28
|
+
constructor(input: ListFraudsterRegistrationJobsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListFraudsterRegistrationJobsCommandInput,
|
|
35
|
+
ListFraudsterRegistrationJobsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListSpeakerEnrollmentJobsRequest,
|
|
10
|
+
ListSpeakerEnrollmentJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface ListSpeakerEnrollmentJobsCommandInput
|
|
18
|
+
extends ListSpeakerEnrollmentJobsRequest {}
|
|
19
|
+
export interface ListSpeakerEnrollmentJobsCommandOutput
|
|
20
|
+
extends ListSpeakerEnrollmentJobsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListSpeakerEnrollmentJobsCommand extends $Command<
|
|
23
|
+
ListSpeakerEnrollmentJobsCommandInput,
|
|
24
|
+
ListSpeakerEnrollmentJobsCommandOutput,
|
|
25
|
+
VoiceIDClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListSpeakerEnrollmentJobsCommandInput;
|
|
28
|
+
constructor(input: ListSpeakerEnrollmentJobsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListSpeakerEnrollmentJobsCommandInput,
|
|
35
|
+
ListSpeakerEnrollmentJobsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListSpeakersRequest, ListSpeakersResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
VoiceIDClientResolvedConfig,
|
|
13
|
+
} from "../VoiceIDClient";
|
|
14
|
+
export interface ListSpeakersCommandInput extends ListSpeakersRequest {}
|
|
15
|
+
export interface ListSpeakersCommandOutput
|
|
16
|
+
extends ListSpeakersResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListSpeakersCommand extends $Command<
|
|
19
|
+
ListSpeakersCommandInput,
|
|
20
|
+
ListSpeakersCommandOutput,
|
|
21
|
+
VoiceIDClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListSpeakersCommandInput;
|
|
24
|
+
constructor(input: ListSpeakersCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListSpeakersCommandInput, ListSpeakersCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListTagsForResourceRequest,
|
|
10
|
+
ListTagsForResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
VoiceIDClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
OptOutSpeakerRequest,
|
|
10
|
+
OptOutSpeakerResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface OptOutSpeakerCommandInput extends OptOutSpeakerRequest {}
|
|
18
|
+
export interface OptOutSpeakerCommandOutput
|
|
19
|
+
extends OptOutSpeakerResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class OptOutSpeakerCommand extends $Command<
|
|
22
|
+
OptOutSpeakerCommandInput,
|
|
23
|
+
OptOutSpeakerCommandOutput,
|
|
24
|
+
VoiceIDClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: OptOutSpeakerCommandInput;
|
|
27
|
+
constructor(input: OptOutSpeakerCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
StartFraudsterRegistrationJobRequest,
|
|
10
|
+
StartFraudsterRegistrationJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
VoiceIDClientResolvedConfig,
|
|
16
|
+
} from "../VoiceIDClient";
|
|
17
|
+
export interface StartFraudsterRegistrationJobCommandInput
|
|
18
|
+
extends StartFraudsterRegistrationJobRequest {}
|
|
19
|
+
export interface StartFraudsterRegistrationJobCommandOutput
|
|
20
|
+
extends StartFraudsterRegistrationJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartFraudsterRegistrationJobCommand extends $Command<
|
|
23
|
+
StartFraudsterRegistrationJobCommandInput,
|
|
24
|
+
StartFraudsterRegistrationJobCommandOutput,
|
|
25
|
+
VoiceIDClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartFraudsterRegistrationJobCommandInput;
|
|
28
|
+
constructor(input: StartFraudsterRegistrationJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: VoiceIDClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
StartFraudsterRegistrationJobCommandInput,
|
|
35
|
+
StartFraudsterRegistrationJobCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|