@aws-sdk/client-polly 3.168.0 → 3.170.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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Polly.d.ts +166 -50
  3. package/dist-types/ts3.4/PollyClient.d.ts +183 -82
  4. package/dist-types/ts3.4/commands/DeleteLexiconCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/DescribeVoicesCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/GetLexiconCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/GetSpeechSynthesisTaskCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/ListLexiconsCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/ListSpeechSynthesisTasksCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/PutLexiconCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/StartSpeechSynthesisTaskCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/SynthesizeSpeechCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/index.d.ts +9 -9
  14. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  15. package/dist-types/ts3.4/index.d.ts +6 -6
  16. package/dist-types/ts3.4/models/PollyServiceException.d.ts +8 -6
  17. package/dist-types/ts3.4/models/index.d.ts +1 -1
  18. package/dist-types/ts3.4/models/models_0.d.ts +618 -435
  19. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  20. package/dist-types/ts3.4/pagination/ListSpeechSynthesisTasksPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  22. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +113 -29
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  27. package/package.json +34 -34
@@ -1,6 +1,6 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Polly } from "../Polly";
3
- import { PollyClient } from "../PollyClient";
4
- export interface PollyPaginationConfiguration extends PaginationConfiguration {
5
- client: Polly | PollyClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Polly } from "../Polly";
3
+ import { PollyClient } from "../PollyClient";
4
+ export interface PollyPaginationConfiguration extends PaginationConfiguration {
5
+ client: Polly | PollyClient;
6
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput } from "../commands/ListSpeechSynthesisTasksCommand";
3
- import { PollyPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSpeechSynthesisTasks(config: PollyPaginationConfiguration, input: ListSpeechSynthesisTasksCommandInput, ...additionalArguments: any): Paginator<ListSpeechSynthesisTasksCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSpeechSynthesisTasksCommandInput,
4
+ ListSpeechSynthesisTasksCommandOutput,
5
+ } from "../commands/ListSpeechSynthesisTasksCommand";
6
+ import { PollyPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSpeechSynthesisTasks(
8
+ config: PollyPaginationConfiguration,
9
+ input: ListSpeechSynthesisTasksCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSpeechSynthesisTasksCommandOutput>;
@@ -1,2 +1,2 @@
1
- export * from "./Interfaces";
2
- export * from "./ListSpeechSynthesisTasksPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListSpeechSynthesisTasksPaginator";
@@ -1,29 +1,113 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DeleteLexiconCommandInput, DeleteLexiconCommandOutput } from "../commands/DeleteLexiconCommand";
4
- import { DescribeVoicesCommandInput, DescribeVoicesCommandOutput } from "../commands/DescribeVoicesCommand";
5
- import { GetLexiconCommandInput, GetLexiconCommandOutput } from "../commands/GetLexiconCommand";
6
- import { GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput } from "../commands/GetSpeechSynthesisTaskCommand";
7
- import { ListLexiconsCommandInput, ListLexiconsCommandOutput } from "../commands/ListLexiconsCommand";
8
- import { ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput } from "../commands/ListSpeechSynthesisTasksCommand";
9
- import { PutLexiconCommandInput, PutLexiconCommandOutput } from "../commands/PutLexiconCommand";
10
- import { StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput } from "../commands/StartSpeechSynthesisTaskCommand";
11
- import { SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput } from "../commands/SynthesizeSpeechCommand";
12
- export declare const serializeAws_restJson1DeleteLexiconCommand: (input: DeleteLexiconCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
- export declare const serializeAws_restJson1DescribeVoicesCommand: (input: DescribeVoicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
- export declare const serializeAws_restJson1GetLexiconCommand: (input: GetLexiconCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
- export declare const serializeAws_restJson1GetSpeechSynthesisTaskCommand: (input: GetSpeechSynthesisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
- export declare const serializeAws_restJson1ListLexiconsCommand: (input: ListLexiconsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_restJson1ListSpeechSynthesisTasksCommand: (input: ListSpeechSynthesisTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_restJson1PutLexiconCommand: (input: PutLexiconCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_restJson1StartSpeechSynthesisTaskCommand: (input: StartSpeechSynthesisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1SynthesizeSpeechCommand: (input: SynthesizeSpeechCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const deserializeAws_restJson1DeleteLexiconCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLexiconCommandOutput>;
22
- export declare const deserializeAws_restJson1DescribeVoicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVoicesCommandOutput>;
23
- export declare const deserializeAws_restJson1GetLexiconCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLexiconCommandOutput>;
24
- export declare const deserializeAws_restJson1GetSpeechSynthesisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSpeechSynthesisTaskCommandOutput>;
25
- export declare const deserializeAws_restJson1ListLexiconsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLexiconsCommandOutput>;
26
- export declare const deserializeAws_restJson1ListSpeechSynthesisTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSpeechSynthesisTasksCommandOutput>;
27
- export declare const deserializeAws_restJson1PutLexiconCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutLexiconCommandOutput>;
28
- export declare const deserializeAws_restJson1StartSpeechSynthesisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSpeechSynthesisTaskCommandOutput>;
29
- export declare const deserializeAws_restJson1SynthesizeSpeechCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SynthesizeSpeechCommandOutput>;
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
+ DeleteLexiconCommandInput,
8
+ DeleteLexiconCommandOutput,
9
+ } from "../commands/DeleteLexiconCommand";
10
+ import {
11
+ DescribeVoicesCommandInput,
12
+ DescribeVoicesCommandOutput,
13
+ } from "../commands/DescribeVoicesCommand";
14
+ import {
15
+ GetLexiconCommandInput,
16
+ GetLexiconCommandOutput,
17
+ } from "../commands/GetLexiconCommand";
18
+ import {
19
+ GetSpeechSynthesisTaskCommandInput,
20
+ GetSpeechSynthesisTaskCommandOutput,
21
+ } from "../commands/GetSpeechSynthesisTaskCommand";
22
+ import {
23
+ ListLexiconsCommandInput,
24
+ ListLexiconsCommandOutput,
25
+ } from "../commands/ListLexiconsCommand";
26
+ import {
27
+ ListSpeechSynthesisTasksCommandInput,
28
+ ListSpeechSynthesisTasksCommandOutput,
29
+ } from "../commands/ListSpeechSynthesisTasksCommand";
30
+ import {
31
+ PutLexiconCommandInput,
32
+ PutLexiconCommandOutput,
33
+ } from "../commands/PutLexiconCommand";
34
+ import {
35
+ StartSpeechSynthesisTaskCommandInput,
36
+ StartSpeechSynthesisTaskCommandOutput,
37
+ } from "../commands/StartSpeechSynthesisTaskCommand";
38
+ import {
39
+ SynthesizeSpeechCommandInput,
40
+ SynthesizeSpeechCommandOutput,
41
+ } from "../commands/SynthesizeSpeechCommand";
42
+ export declare const serializeAws_restJson1DeleteLexiconCommand: (
43
+ input: DeleteLexiconCommandInput,
44
+ context: __SerdeContext
45
+ ) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_restJson1DescribeVoicesCommand: (
47
+ input: DescribeVoicesCommandInput,
48
+ context: __SerdeContext
49
+ ) => Promise<__HttpRequest>;
50
+ export declare const serializeAws_restJson1GetLexiconCommand: (
51
+ input: GetLexiconCommandInput,
52
+ context: __SerdeContext
53
+ ) => Promise<__HttpRequest>;
54
+ export declare const serializeAws_restJson1GetSpeechSynthesisTaskCommand: (
55
+ input: GetSpeechSynthesisTaskCommandInput,
56
+ context: __SerdeContext
57
+ ) => Promise<__HttpRequest>;
58
+ export declare const serializeAws_restJson1ListLexiconsCommand: (
59
+ input: ListLexiconsCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_restJson1ListSpeechSynthesisTasksCommand: (
63
+ input: ListSpeechSynthesisTasksCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1PutLexiconCommand: (
67
+ input: PutLexiconCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1StartSpeechSynthesisTaskCommand: (
71
+ input: StartSpeechSynthesisTaskCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1SynthesizeSpeechCommand: (
75
+ input: SynthesizeSpeechCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const deserializeAws_restJson1DeleteLexiconCommand: (
79
+ output: __HttpResponse,
80
+ context: __SerdeContext
81
+ ) => Promise<DeleteLexiconCommandOutput>;
82
+ export declare const deserializeAws_restJson1DescribeVoicesCommand: (
83
+ output: __HttpResponse,
84
+ context: __SerdeContext
85
+ ) => Promise<DescribeVoicesCommandOutput>;
86
+ export declare const deserializeAws_restJson1GetLexiconCommand: (
87
+ output: __HttpResponse,
88
+ context: __SerdeContext
89
+ ) => Promise<GetLexiconCommandOutput>;
90
+ export declare const deserializeAws_restJson1GetSpeechSynthesisTaskCommand: (
91
+ output: __HttpResponse,
92
+ context: __SerdeContext
93
+ ) => Promise<GetSpeechSynthesisTaskCommandOutput>;
94
+ export declare const deserializeAws_restJson1ListLexiconsCommand: (
95
+ output: __HttpResponse,
96
+ context: __SerdeContext
97
+ ) => Promise<ListLexiconsCommandOutput>;
98
+ export declare const deserializeAws_restJson1ListSpeechSynthesisTasksCommand: (
99
+ output: __HttpResponse,
100
+ context: __SerdeContext
101
+ ) => Promise<ListSpeechSynthesisTasksCommandOutput>;
102
+ export declare const deserializeAws_restJson1PutLexiconCommand: (
103
+ output: __HttpResponse,
104
+ context: __SerdeContext
105
+ ) => Promise<PutLexiconCommandOutput>;
106
+ export declare const deserializeAws_restJson1StartSpeechSynthesisTaskCommand: (
107
+ output: __HttpResponse,
108
+ context: __SerdeContext
109
+ ) => Promise<StartSpeechSynthesisTaskCommandOutput>;
110
+ export declare const deserializeAws_restJson1SynthesizeSpeechCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<SynthesizeSpeechCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { PollyClientConfig } from "./PollyClient";
3
-
4
- export declare const getRuntimeConfig: (config: PollyClientConfig) => {
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 { PollyClientConfig } from "./PollyClient";
3
+
4
+ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,38 +1,66 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { PollyClientConfig } from "./PollyClient";
3
-
4
- export declare const getRuntimeConfig: (config: PollyClientConfig) => {
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<string>;
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 { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { PollyClientConfig } from "./PollyClient";
3
+
4
+ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<string>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,37 +1,67 @@
1
- import { PollyClientConfig } from "./PollyClient";
2
-
3
- export declare const getRuntimeConfig: (config: PollyClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { PollyClientConfig } from "./PollyClient";
2
+
3
+ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler:
7
+ | (import("@aws-sdk/types").RequestHandler<
8
+ any,
9
+ any,
10
+ import("@aws-sdk/types").HttpHandlerOptions
11
+ > &
12
+ import("@aws-sdk/protocol-http").HttpHandler)
13
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
14
+ apiVersion: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ base64Decoder: import("@aws-sdk/types").Decoder;
19
+ base64Encoder: import("@aws-sdk/types").Encoder;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ disableHostPrefix: boolean;
23
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
24
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
27
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
28
+ serviceId: string;
29
+ region: string | import("@aws-sdk/types").Provider<any>;
30
+ credentialDefaultProvider: (
31
+ input: any
32
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
33
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
34
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
35
+ import("@aws-sdk/types").UserAgent
36
+ >;
37
+ defaultsMode:
38
+ | import("@aws-sdk/smithy-client").DefaultsMode
39
+ | import("@aws-sdk/types").Provider<
40
+ import("@aws-sdk/smithy-client").DefaultsMode
41
+ >;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };
@@ -1,11 +1,11 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
- import { PollyClientConfig } from "./PollyClient";
3
-
4
- export declare const getRuntimeConfig: (config: PollyClientConfig) => {
5
- apiVersion: string;
6
- disableHostPrefix: boolean;
7
- logger: __Logger;
8
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
- serviceId: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- };
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { PollyClientConfig } from "./PollyClient";
3
+
4
+ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-polly",
3
3
  "description": "AWS SDK for JavaScript Polly Client for Node.js, Browser and React Native",
4
- "version": "3.168.0",
4
+ "version": "3.170.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,45 +19,45 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.168.0",
23
- "@aws-sdk/config-resolver": "3.168.0",
24
- "@aws-sdk/credential-provider-node": "3.168.0",
25
- "@aws-sdk/fetch-http-handler": "3.168.0",
26
- "@aws-sdk/hash-node": "3.168.0",
27
- "@aws-sdk/invalid-dependency": "3.168.0",
28
- "@aws-sdk/middleware-content-length": "3.168.0",
29
- "@aws-sdk/middleware-host-header": "3.168.0",
30
- "@aws-sdk/middleware-logger": "3.168.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.168.0",
32
- "@aws-sdk/middleware-retry": "3.168.0",
33
- "@aws-sdk/middleware-serde": "3.168.0",
34
- "@aws-sdk/middleware-signing": "3.168.0",
35
- "@aws-sdk/middleware-stack": "3.168.0",
36
- "@aws-sdk/middleware-user-agent": "3.168.0",
37
- "@aws-sdk/node-config-provider": "3.168.0",
38
- "@aws-sdk/node-http-handler": "3.168.0",
39
- "@aws-sdk/protocol-http": "3.168.0",
40
- "@aws-sdk/smithy-client": "3.168.0",
41
- "@aws-sdk/types": "3.168.0",
42
- "@aws-sdk/url-parser": "3.168.0",
43
- "@aws-sdk/util-base64-browser": "3.168.0",
44
- "@aws-sdk/util-base64-node": "3.168.0",
45
- "@aws-sdk/util-body-length-browser": "3.168.0",
46
- "@aws-sdk/util-body-length-node": "3.168.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.168.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.168.0",
49
- "@aws-sdk/util-user-agent-browser": "3.168.0",
50
- "@aws-sdk/util-user-agent-node": "3.168.0",
51
- "@aws-sdk/util-utf8-browser": "3.168.0",
52
- "@aws-sdk/util-utf8-node": "3.168.0",
22
+ "@aws-sdk/client-sts": "3.170.0",
23
+ "@aws-sdk/config-resolver": "3.170.0",
24
+ "@aws-sdk/credential-provider-node": "3.170.0",
25
+ "@aws-sdk/fetch-http-handler": "3.170.0",
26
+ "@aws-sdk/hash-node": "3.170.0",
27
+ "@aws-sdk/invalid-dependency": "3.170.0",
28
+ "@aws-sdk/middleware-content-length": "3.170.0",
29
+ "@aws-sdk/middleware-host-header": "3.170.0",
30
+ "@aws-sdk/middleware-logger": "3.170.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
+ "@aws-sdk/middleware-retry": "3.170.0",
33
+ "@aws-sdk/middleware-serde": "3.170.0",
34
+ "@aws-sdk/middleware-signing": "3.170.0",
35
+ "@aws-sdk/middleware-stack": "3.170.0",
36
+ "@aws-sdk/middleware-user-agent": "3.170.0",
37
+ "@aws-sdk/node-config-provider": "3.170.0",
38
+ "@aws-sdk/node-http-handler": "3.170.0",
39
+ "@aws-sdk/protocol-http": "3.170.0",
40
+ "@aws-sdk/smithy-client": "3.170.0",
41
+ "@aws-sdk/types": "3.170.0",
42
+ "@aws-sdk/url-parser": "3.170.0",
43
+ "@aws-sdk/util-base64-browser": "3.170.0",
44
+ "@aws-sdk/util-base64-node": "3.170.0",
45
+ "@aws-sdk/util-body-length-browser": "3.170.0",
46
+ "@aws-sdk/util-body-length-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.170.0",
50
+ "@aws-sdk/util-user-agent-node": "3.170.0",
51
+ "@aws-sdk/util-utf8-browser": "3.170.0",
52
+ "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.168.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.170.0",
57
57
  "@tsconfig/recommended": "1.0.1",
58
58
  "@types/node": "^12.7.5",
59
59
  "concurrently": "7.0.0",
60
- "downlevel-dts": "0.7.0",
60
+ "downlevel-dts": "0.10.1",
61
61
  "rimraf": "3.0.2",
62
62
  "typedoc": "0.19.2",
63
63
  "typescript": "~4.6.2"