@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.
Files changed (42) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/VoiceID.d.ts +361 -110
  3. package/dist-types/ts3.4/VoiceIDClient.d.ts +230 -94
  4. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +30 -17
  6. package/dist-types/ts3.4/commands/DeleteFraudsterCommand.d.ts +30 -17
  7. package/dist-types/ts3.4/commands/DeleteSpeakerCommand.d.ts +30 -17
  8. package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeFraudsterCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DescribeFraudsterRegistrationJobCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeSpeakerCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/EvaluateSessionCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListFraudsterRegistrationJobsCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/ListSpeakerEnrollmentJobsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListSpeakersCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/OptOutSpeakerCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/StartFraudsterRegistrationJobCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/StartSpeakerEnrollmentJobCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +6 -6
  28. package/dist-types/ts3.4/models/VoiceIDServiceException.d.ts +7 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +657 -829
  31. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  32. package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListSpeakersPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  37. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +257 -65
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  42. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { VoiceID } from "../VoiceID";
3
- import { VoiceIDClient } from "../VoiceIDClient";
4
- export interface VoiceIDPaginationConfiguration extends PaginationConfiguration {
5
- client: VoiceID | VoiceIDClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { VoiceID } from "../VoiceID";
3
+ import { VoiceIDClient } from "../VoiceIDClient";
4
+ export interface VoiceIDPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: VoiceID | VoiceIDClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
3
- import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListDomains(config: VoiceIDPaginationConfiguration, input: ListDomainsCommandInput, ...additionalArguments: any): Paginator<ListDomainsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDomainsCommandInput,
4
+ ListDomainsCommandOutput,
5
+ } from "../commands/ListDomainsCommand";
6
+ import { VoiceIDPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDomains(
8
+ config: VoiceIDPaginationConfiguration,
9
+ input: ListDomainsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDomainsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput } from "../commands/ListFraudsterRegistrationJobsCommand";
3
- import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFraudsterRegistrationJobs(config: VoiceIDPaginationConfiguration, input: ListFraudsterRegistrationJobsCommandInput, ...additionalArguments: any): Paginator<ListFraudsterRegistrationJobsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListFraudsterRegistrationJobsCommandInput,
4
+ ListFraudsterRegistrationJobsCommandOutput,
5
+ } from "../commands/ListFraudsterRegistrationJobsCommand";
6
+ import { VoiceIDPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListFraudsterRegistrationJobs(
8
+ config: VoiceIDPaginationConfiguration,
9
+ input: ListFraudsterRegistrationJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListFraudsterRegistrationJobsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput } from "../commands/ListSpeakerEnrollmentJobsCommand";
3
- import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSpeakerEnrollmentJobs(config: VoiceIDPaginationConfiguration, input: ListSpeakerEnrollmentJobsCommandInput, ...additionalArguments: any): Paginator<ListSpeakerEnrollmentJobsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSpeakerEnrollmentJobsCommandInput,
4
+ ListSpeakerEnrollmentJobsCommandOutput,
5
+ } from "../commands/ListSpeakerEnrollmentJobsCommand";
6
+ import { VoiceIDPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSpeakerEnrollmentJobs(
8
+ config: VoiceIDPaginationConfiguration,
9
+ input: ListSpeakerEnrollmentJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSpeakerEnrollmentJobsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSpeakersCommandInput, ListSpeakersCommandOutput } from "../commands/ListSpeakersCommand";
3
- import { VoiceIDPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSpeakers(config: VoiceIDPaginationConfiguration, input: ListSpeakersCommandInput, ...additionalArguments: any): Paginator<ListSpeakersCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSpeakersCommandInput,
4
+ ListSpeakersCommandOutput,
5
+ } from "../commands/ListSpeakersCommand";
6
+ import { VoiceIDPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSpeakers(
8
+ config: VoiceIDPaginationConfiguration,
9
+ input: ListSpeakersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSpeakersCommandOutput>;
@@ -1,5 +1,5 @@
1
- export * from "./Interfaces";
2
- export * from "./ListDomainsPaginator";
3
- export * from "./ListFraudsterRegistrationJobsPaginator";
4
- export * from "./ListSpeakerEnrollmentJobsPaginator";
5
- export * from "./ListSpeakersPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListDomainsPaginator";
3
+ export * from "./ListFraudsterRegistrationJobsPaginator";
4
+ export * from "./ListSpeakerEnrollmentJobsPaginator";
5
+ export * from "./ListSpeakersPaginator";
@@ -1,65 +1,257 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
4
- import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
5
- import { DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput } from "../commands/DeleteFraudsterCommand";
6
- import { DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput } from "../commands/DeleteSpeakerCommand";
7
- import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "../commands/DescribeDomainCommand";
8
- import { DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput } from "../commands/DescribeFraudsterCommand";
9
- import { DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput } from "../commands/DescribeFraudsterRegistrationJobCommand";
10
- import { DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput } from "../commands/DescribeSpeakerCommand";
11
- import { DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput } from "../commands/DescribeSpeakerEnrollmentJobCommand";
12
- import { EvaluateSessionCommandInput, EvaluateSessionCommandOutput } from "../commands/EvaluateSessionCommand";
13
- import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
14
- import { ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput } from "../commands/ListFraudsterRegistrationJobsCommand";
15
- import { ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput } from "../commands/ListSpeakerEnrollmentJobsCommand";
16
- import { ListSpeakersCommandInput, ListSpeakersCommandOutput } from "../commands/ListSpeakersCommand";
17
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
18
- import { OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput } from "../commands/OptOutSpeakerCommand";
19
- import { StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput } from "../commands/StartFraudsterRegistrationJobCommand";
20
- import { StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput } from "../commands/StartSpeakerEnrollmentJobCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
23
- import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand";
24
- export declare const serializeAws_json1_0CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_json1_0DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_json1_0DeleteFraudsterCommand: (input: DeleteFraudsterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_json1_0DeleteSpeakerCommand: (input: DeleteSpeakerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_json1_0DescribeDomainCommand: (input: DescribeDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_json1_0DescribeFraudsterCommand: (input: DescribeFraudsterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_json1_0DescribeFraudsterRegistrationJobCommand: (input: DescribeFraudsterRegistrationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_json1_0DescribeSpeakerCommand: (input: DescribeSpeakerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_json1_0DescribeSpeakerEnrollmentJobCommand: (input: DescribeSpeakerEnrollmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_json1_0EvaluateSessionCommand: (input: EvaluateSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_json1_0ListDomainsCommand: (input: ListDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_json1_0ListFraudsterRegistrationJobsCommand: (input: ListFraudsterRegistrationJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_json1_0ListSpeakerEnrollmentJobsCommand: (input: ListSpeakerEnrollmentJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_json1_0ListSpeakersCommand: (input: ListSpeakersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_json1_0OptOutSpeakerCommand: (input: OptOutSpeakerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_json1_0StartFraudsterRegistrationJobCommand: (input: StartFraudsterRegistrationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_json1_0StartSpeakerEnrollmentJobCommand: (input: StartSpeakerEnrollmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_json1_0UpdateDomainCommand: (input: UpdateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const deserializeAws_json1_0CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
46
- export declare const deserializeAws_json1_0DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
47
- export declare const deserializeAws_json1_0DeleteFraudsterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFraudsterCommandOutput>;
48
- export declare const deserializeAws_json1_0DeleteSpeakerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSpeakerCommandOutput>;
49
- export declare const deserializeAws_json1_0DescribeDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDomainCommandOutput>;
50
- export declare const deserializeAws_json1_0DescribeFraudsterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFraudsterCommandOutput>;
51
- export declare const deserializeAws_json1_0DescribeFraudsterRegistrationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFraudsterRegistrationJobCommandOutput>;
52
- export declare const deserializeAws_json1_0DescribeSpeakerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSpeakerCommandOutput>;
53
- export declare const deserializeAws_json1_0DescribeSpeakerEnrollmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSpeakerEnrollmentJobCommandOutput>;
54
- export declare const deserializeAws_json1_0EvaluateSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EvaluateSessionCommandOutput>;
55
- export declare const deserializeAws_json1_0ListDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainsCommandOutput>;
56
- export declare const deserializeAws_json1_0ListFraudsterRegistrationJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFraudsterRegistrationJobsCommandOutput>;
57
- export declare const deserializeAws_json1_0ListSpeakerEnrollmentJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSpeakerEnrollmentJobsCommandOutput>;
58
- export declare const deserializeAws_json1_0ListSpeakersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSpeakersCommandOutput>;
59
- export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
60
- export declare const deserializeAws_json1_0OptOutSpeakerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<OptOutSpeakerCommandOutput>;
61
- export declare const deserializeAws_json1_0StartFraudsterRegistrationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFraudsterRegistrationJobCommandOutput>;
62
- export declare const deserializeAws_json1_0StartSpeakerEnrollmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSpeakerEnrollmentJobCommandOutput>;
63
- export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
64
- export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
65
- export declare const deserializeAws_json1_0UpdateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateDomainCommandInput,
8
+ CreateDomainCommandOutput,
9
+ } from "../commands/CreateDomainCommand";
10
+ import {
11
+ DeleteDomainCommandInput,
12
+ DeleteDomainCommandOutput,
13
+ } from "../commands/DeleteDomainCommand";
14
+ import {
15
+ DeleteFraudsterCommandInput,
16
+ DeleteFraudsterCommandOutput,
17
+ } from "../commands/DeleteFraudsterCommand";
18
+ import {
19
+ DeleteSpeakerCommandInput,
20
+ DeleteSpeakerCommandOutput,
21
+ } from "../commands/DeleteSpeakerCommand";
22
+ import {
23
+ DescribeDomainCommandInput,
24
+ DescribeDomainCommandOutput,
25
+ } from "../commands/DescribeDomainCommand";
26
+ import {
27
+ DescribeFraudsterCommandInput,
28
+ DescribeFraudsterCommandOutput,
29
+ } from "../commands/DescribeFraudsterCommand";
30
+ import {
31
+ DescribeFraudsterRegistrationJobCommandInput,
32
+ DescribeFraudsterRegistrationJobCommandOutput,
33
+ } from "../commands/DescribeFraudsterRegistrationJobCommand";
34
+ import {
35
+ DescribeSpeakerCommandInput,
36
+ DescribeSpeakerCommandOutput,
37
+ } from "../commands/DescribeSpeakerCommand";
38
+ import {
39
+ DescribeSpeakerEnrollmentJobCommandInput,
40
+ DescribeSpeakerEnrollmentJobCommandOutput,
41
+ } from "../commands/DescribeSpeakerEnrollmentJobCommand";
42
+ import {
43
+ EvaluateSessionCommandInput,
44
+ EvaluateSessionCommandOutput,
45
+ } from "../commands/EvaluateSessionCommand";
46
+ import {
47
+ ListDomainsCommandInput,
48
+ ListDomainsCommandOutput,
49
+ } from "../commands/ListDomainsCommand";
50
+ import {
51
+ ListFraudsterRegistrationJobsCommandInput,
52
+ ListFraudsterRegistrationJobsCommandOutput,
53
+ } from "../commands/ListFraudsterRegistrationJobsCommand";
54
+ import {
55
+ ListSpeakerEnrollmentJobsCommandInput,
56
+ ListSpeakerEnrollmentJobsCommandOutput,
57
+ } from "../commands/ListSpeakerEnrollmentJobsCommand";
58
+ import {
59
+ ListSpeakersCommandInput,
60
+ ListSpeakersCommandOutput,
61
+ } from "../commands/ListSpeakersCommand";
62
+ import {
63
+ ListTagsForResourceCommandInput,
64
+ ListTagsForResourceCommandOutput,
65
+ } from "../commands/ListTagsForResourceCommand";
66
+ import {
67
+ OptOutSpeakerCommandInput,
68
+ OptOutSpeakerCommandOutput,
69
+ } from "../commands/OptOutSpeakerCommand";
70
+ import {
71
+ StartFraudsterRegistrationJobCommandInput,
72
+ StartFraudsterRegistrationJobCommandOutput,
73
+ } from "../commands/StartFraudsterRegistrationJobCommand";
74
+ import {
75
+ StartSpeakerEnrollmentJobCommandInput,
76
+ StartSpeakerEnrollmentJobCommandOutput,
77
+ } from "../commands/StartSpeakerEnrollmentJobCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "../commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "../commands/UntagResourceCommand";
86
+ import {
87
+ UpdateDomainCommandInput,
88
+ UpdateDomainCommandOutput,
89
+ } from "../commands/UpdateDomainCommand";
90
+ export declare const serializeAws_json1_0CreateDomainCommand: (
91
+ input: CreateDomainCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_json1_0DeleteDomainCommand: (
95
+ input: DeleteDomainCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_json1_0DeleteFraudsterCommand: (
99
+ input: DeleteFraudsterCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_json1_0DeleteSpeakerCommand: (
103
+ input: DeleteSpeakerCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_json1_0DescribeDomainCommand: (
107
+ input: DescribeDomainCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_json1_0DescribeFraudsterCommand: (
111
+ input: DescribeFraudsterCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_json1_0DescribeFraudsterRegistrationJobCommand: (
115
+ input: DescribeFraudsterRegistrationJobCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_json1_0DescribeSpeakerCommand: (
119
+ input: DescribeSpeakerCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_json1_0DescribeSpeakerEnrollmentJobCommand: (
123
+ input: DescribeSpeakerEnrollmentJobCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_json1_0EvaluateSessionCommand: (
127
+ input: EvaluateSessionCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_json1_0ListDomainsCommand: (
131
+ input: ListDomainsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_json1_0ListFraudsterRegistrationJobsCommand: (
135
+ input: ListFraudsterRegistrationJobsCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_json1_0ListSpeakerEnrollmentJobsCommand: (
139
+ input: ListSpeakerEnrollmentJobsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_json1_0ListSpeakersCommand: (
143
+ input: ListSpeakersCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_json1_0ListTagsForResourceCommand: (
147
+ input: ListTagsForResourceCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_json1_0OptOutSpeakerCommand: (
151
+ input: OptOutSpeakerCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_json1_0StartFraudsterRegistrationJobCommand: (
155
+ input: StartFraudsterRegistrationJobCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_json1_0StartSpeakerEnrollmentJobCommand: (
159
+ input: StartSpeakerEnrollmentJobCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_json1_0TagResourceCommand: (
163
+ input: TagResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_json1_0UntagResourceCommand: (
167
+ input: UntagResourceCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_json1_0UpdateDomainCommand: (
171
+ input: UpdateDomainCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const deserializeAws_json1_0CreateDomainCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<CreateDomainCommandOutput>;
178
+ export declare const deserializeAws_json1_0DeleteDomainCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<DeleteDomainCommandOutput>;
182
+ export declare const deserializeAws_json1_0DeleteFraudsterCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<DeleteFraudsterCommandOutput>;
186
+ export declare const deserializeAws_json1_0DeleteSpeakerCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DeleteSpeakerCommandOutput>;
190
+ export declare const deserializeAws_json1_0DescribeDomainCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<DescribeDomainCommandOutput>;
194
+ export declare const deserializeAws_json1_0DescribeFraudsterCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<DescribeFraudsterCommandOutput>;
198
+ export declare const deserializeAws_json1_0DescribeFraudsterRegistrationJobCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<DescribeFraudsterRegistrationJobCommandOutput>;
202
+ export declare const deserializeAws_json1_0DescribeSpeakerCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<DescribeSpeakerCommandOutput>;
206
+ export declare const deserializeAws_json1_0DescribeSpeakerEnrollmentJobCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<DescribeSpeakerEnrollmentJobCommandOutput>;
210
+ export declare const deserializeAws_json1_0EvaluateSessionCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<EvaluateSessionCommandOutput>;
214
+ export declare const deserializeAws_json1_0ListDomainsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<ListDomainsCommandOutput>;
218
+ export declare const deserializeAws_json1_0ListFraudsterRegistrationJobsCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<ListFraudsterRegistrationJobsCommandOutput>;
222
+ export declare const deserializeAws_json1_0ListSpeakerEnrollmentJobsCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<ListSpeakerEnrollmentJobsCommandOutput>;
226
+ export declare const deserializeAws_json1_0ListSpeakersCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ListSpeakersCommandOutput>;
230
+ export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListTagsForResourceCommandOutput>;
234
+ export declare const deserializeAws_json1_0OptOutSpeakerCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<OptOutSpeakerCommandOutput>;
238
+ export declare const deserializeAws_json1_0StartFraudsterRegistrationJobCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<StartFraudsterRegistrationJobCommandOutput>;
242
+ export declare const deserializeAws_json1_0StartSpeakerEnrollmentJobCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<StartSpeakerEnrollmentJobCommandOutput>;
246
+ export declare const deserializeAws_json1_0TagResourceCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<TagResourceCommandOutput>;
250
+ export declare const deserializeAws_json1_0UntagResourceCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<UntagResourceCommandOutput>;
254
+ export declare const deserializeAws_json1_0UpdateDomainCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<UpdateDomainCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { VoiceIDClientConfig } from "./VoiceIDClient";
3
-
4
- export declare const getRuntimeConfig: (config: VoiceIDClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { VoiceIDClientConfig } from "./VoiceIDClient";
3
+ export declare const getRuntimeConfig: (config: VoiceIDClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };