@aws-sdk/client-polly 3.194.0 → 3.196.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 +11 -0
- package/dist-cjs/PollyClient.js +11 -8
- package/dist-cjs/commands/DeleteLexiconCommand.js +10 -0
- package/dist-cjs/commands/DescribeVoicesCommand.js +10 -0
- package/dist-cjs/commands/GetLexiconCommand.js +10 -0
- package/dist-cjs/commands/GetSpeechSynthesisTaskCommand.js +10 -0
- package/dist-cjs/commands/ListLexiconsCommand.js +10 -0
- package/dist-cjs/commands/ListSpeechSynthesisTasksCommand.js +10 -0
- package/dist-cjs/commands/PutLexiconCommand.js +10 -0
- package/dist-cjs/commands/StartSpeechSynthesisTaskCommand.js +10 -0
- package/dist-cjs/commands/SynthesizeSpeechCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/PollyClient.js +12 -9
- package/dist-es/commands/DeleteLexiconCommand.js +10 -0
- package/dist-es/commands/DescribeVoicesCommand.js +10 -0
- package/dist-es/commands/GetLexiconCommand.js +10 -0
- package/dist-es/commands/GetSpeechSynthesisTaskCommand.js +10 -0
- package/dist-es/commands/ListLexiconsCommand.js +10 -0
- package/dist-es/commands/ListSpeechSynthesisTasksCommand.js +10 -0
- package/dist-es/commands/PutLexiconCommand.js +10 -0
- package/dist-es/commands/StartSpeechSynthesisTaskCommand.js +10 -0
- package/dist-es/commands/SynthesizeSpeechCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/PollyClient.d.ts +6 -9
- package/dist-types/commands/DeleteLexiconCommand.d.ts +2 -0
- package/dist-types/commands/DescribeVoicesCommand.d.ts +2 -0
- package/dist-types/commands/GetLexiconCommand.d.ts +2 -0
- package/dist-types/commands/GetSpeechSynthesisTaskCommand.d.ts +2 -0
- package/dist-types/commands/ListLexiconsCommand.d.ts +2 -0
- package/dist-types/commands/ListSpeechSynthesisTasksCommand.d.ts +2 -0
- package/dist-types/commands/PutLexiconCommand.d.ts +2 -0
- package/dist-types/commands/StartSpeechSynthesisTaskCommand.d.ts +2 -0
- package/dist-types/commands/SynthesizeSpeechCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/PollyClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/DeleteLexiconCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeVoicesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetLexiconCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetSpeechSynthesisTaskCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListLexiconsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListSpeechSynthesisTasksCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutLexiconCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartSpeechSynthesisTaskCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SynthesizeSpeechCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -177
- package/dist-es/endpoints.js +0 -173
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DeleteLexiconInput, DeleteLexiconOutput } from "../models/models_0";
|
|
@@ -28,6 +29,7 @@ export interface DeleteLexiconCommandOutput extends DeleteLexiconOutput, __Metad
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class DeleteLexiconCommand extends $Command<DeleteLexiconCommandInput, DeleteLexiconCommandOutput, PollyClientResolvedConfig> {
|
|
30
31
|
readonly input: DeleteLexiconCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: DeleteLexiconCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DescribeVoicesInput, DescribeVoicesOutput } from "../models/models_0";
|
|
@@ -43,6 +44,7 @@ export interface DescribeVoicesCommandOutput extends DescribeVoicesOutput, __Met
|
|
|
43
44
|
*/
|
|
44
45
|
export declare class DescribeVoicesCommand extends $Command<DescribeVoicesCommandInput, DescribeVoicesCommandOutput, PollyClientResolvedConfig> {
|
|
45
46
|
readonly input: DescribeVoicesCommandInput;
|
|
47
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
46
48
|
constructor(input: DescribeVoicesCommandInput);
|
|
47
49
|
/**
|
|
48
50
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetLexiconInput, GetLexiconOutput } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface GetLexiconCommandOutput extends GetLexiconOutput, __MetadataBea
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class GetLexiconCommand extends $Command<GetLexiconCommandInput, GetLexiconCommandOutput, PollyClientResolvedConfig> {
|
|
28
29
|
readonly input: GetLexiconCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: GetLexiconCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetSpeechSynthesisTaskInput, GetSpeechSynthesisTaskOutput } from "../models/models_0";
|
|
@@ -28,6 +29,7 @@ export interface GetSpeechSynthesisTaskCommandOutput extends GetSpeechSynthesisT
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class GetSpeechSynthesisTaskCommand extends $Command<GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig> {
|
|
30
31
|
readonly input: GetSpeechSynthesisTaskCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: GetSpeechSynthesisTaskCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListLexiconsInput, ListLexiconsOutput } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface ListLexiconsCommandOutput extends ListLexiconsOutput, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListLexiconsCommand extends $Command<ListLexiconsCommandInput, ListLexiconsCommandOutput, PollyClientResolvedConfig> {
|
|
27
28
|
readonly input: ListLexiconsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListLexiconsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface ListSpeechSynthesisTasksCommandOutput extends ListSpeechSynthes
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class ListSpeechSynthesisTasksCommand extends $Command<ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput, PollyClientResolvedConfig> {
|
|
29
30
|
readonly input: ListSpeechSynthesisTasksCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: ListSpeechSynthesisTasksCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { PutLexiconInput, PutLexiconOutput } from "../models/models_0";
|
|
@@ -30,6 +31,7 @@ export interface PutLexiconCommandOutput extends PutLexiconOutput, __MetadataBea
|
|
|
30
31
|
*/
|
|
31
32
|
export declare class PutLexiconCommand extends $Command<PutLexiconCommandInput, PutLexiconCommandOutput, PollyClientResolvedConfig> {
|
|
32
33
|
readonly input: PutLexiconCommandInput;
|
|
34
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
35
|
constructor(input: PutLexiconCommandInput);
|
|
34
36
|
/**
|
|
35
37
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput } from "../models/models_0";
|
|
@@ -34,6 +35,7 @@ export interface StartSpeechSynthesisTaskCommandOutput extends StartSpeechSynthe
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class StartSpeechSynthesisTaskCommand extends $Command<StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig> {
|
|
36
37
|
readonly input: StartSpeechSynthesisTaskCommandInput;
|
|
38
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
37
39
|
constructor(input: StartSpeechSynthesisTaskCommandInput);
|
|
38
40
|
/**
|
|
39
41
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@aws-sdk/types";
|
|
3
4
|
import { SynthesizeSpeechInput, SynthesizeSpeechOutput } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface SynthesizeSpeechCommandOutput extends __WithSdkStreamMixin<Synt
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class SynthesizeSpeechCommand extends $Command<SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, PollyClientResolvedConfig> {
|
|
31
32
|
readonly input: SynthesizeSpeechCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: SynthesizeSpeechCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -27,8 +27,10 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
logger: import("@aws-sdk/types").Logger;
|
|
29
29
|
serviceId: string;
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
31
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
33
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
34
|
tls?: boolean | undefined;
|
|
33
35
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
36
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -27,8 +27,10 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
logger: import("@aws-sdk/types").Logger;
|
|
29
29
|
serviceId: string;
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
31
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
33
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
34
|
tls?: boolean | undefined;
|
|
33
35
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
36
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,11 +23,13 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
28
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
30
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
29
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { PollyClientConfig } from "./PollyClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
SdkStreamMixinInjector as __SdkStreamMixinInjector,
|
|
42
43
|
StreamCollector as __StreamCollector,
|
|
43
44
|
UrlParser as __UrlParser,
|
|
@@ -79,6 +80,11 @@ import {
|
|
|
79
80
|
SynthesizeSpeechCommandInput,
|
|
80
81
|
SynthesizeSpeechCommandOutput,
|
|
81
82
|
} from "./commands/SynthesizeSpeechCommand";
|
|
83
|
+
import {
|
|
84
|
+
ClientInputEndpointParameters,
|
|
85
|
+
ClientResolvedEndpointParameters,
|
|
86
|
+
EndpointParameters,
|
|
87
|
+
} from "./endpoint/EndpointParameters";
|
|
82
88
|
export declare type ServiceInputTypes =
|
|
83
89
|
| DeleteLexiconCommandInput
|
|
84
90
|
| DescribeVoicesCommandInput
|
|
@@ -120,7 +126,6 @@ export interface ClientDefaults
|
|
|
120
126
|
serviceId?: string;
|
|
121
127
|
region?: string | __Provider<string>;
|
|
122
128
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
123
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
124
129
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
125
130
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
126
131
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
@@ -130,21 +135,23 @@ declare type PollyClientConfigType = Partial<
|
|
|
130
135
|
> &
|
|
131
136
|
ClientDefaults &
|
|
132
137
|
RegionInputConfig &
|
|
133
|
-
|
|
138
|
+
EndpointInputConfig<EndpointParameters> &
|
|
134
139
|
RetryInputConfig &
|
|
135
140
|
HostHeaderInputConfig &
|
|
136
141
|
AwsAuthInputConfig &
|
|
137
|
-
UserAgentInputConfig
|
|
142
|
+
UserAgentInputConfig &
|
|
143
|
+
ClientInputEndpointParameters;
|
|
138
144
|
export interface PollyClientConfig extends PollyClientConfigType {}
|
|
139
145
|
declare type PollyClientResolvedConfigType =
|
|
140
146
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
141
147
|
Required<ClientDefaults> &
|
|
142
148
|
RegionResolvedConfig &
|
|
143
|
-
|
|
149
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
144
150
|
RetryResolvedConfig &
|
|
145
151
|
HostHeaderResolvedConfig &
|
|
146
152
|
AwsAuthResolvedConfig &
|
|
147
|
-
UserAgentResolvedConfig
|
|
153
|
+
UserAgentResolvedConfig &
|
|
154
|
+
ClientResolvedEndpointParameters;
|
|
148
155
|
export interface PollyClientResolvedConfig
|
|
149
156
|
extends PollyClientResolvedConfigType {}
|
|
150
157
|
export declare class PollyClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DeleteLexiconCommand extends $Command<
|
|
|
21
22
|
PollyClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteLexiconCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteLexiconCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DescribeVoicesCommand extends $Command<
|
|
|
21
22
|
PollyClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DescribeVoicesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DescribeVoicesCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetLexiconCommand extends $Command<
|
|
|
21
22
|
PollyClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetLexiconCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetLexiconCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetSpeechSynthesisTaskCommand extends $Command<
|
|
|
25
26
|
PollyClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetSpeechSynthesisTaskCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetSpeechSynthesisTaskCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListLexiconsCommand extends $Command<
|
|
|
21
22
|
PollyClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListLexiconsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListLexiconsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListSpeechSynthesisTasksCommand extends $Command<
|
|
|
25
26
|
PollyClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListSpeechSynthesisTasksCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListSpeechSynthesisTasksCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class PutLexiconCommand extends $Command<
|
|
|
21
22
|
PollyClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: PutLexiconCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: PutLexiconCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartSpeechSynthesisTaskCommand extends $Command<
|
|
|
25
26
|
PollyClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartSpeechSynthesisTaskCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartSpeechSynthesisTaskCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class SynthesizeSpeechCommand extends $Command<
|
|
|
25
26
|
PollyClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: SynthesizeSpeechCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: SynthesizeSpeechCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EndpointParameters as __EndpointParameters,
|
|
3
|
+
Provider,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare type ClientResolvedEndpointParameters =
|
|
12
|
+
ClientInputEndpointParameters & {
|
|
13
|
+
defaultSigningName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
16
|
+
options: T & ClientInputEndpointParameters
|
|
17
|
+
) => T &
|
|
18
|
+
ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
22
|
+
Region?: string;
|
|
23
|
+
UseDualStack?: boolean;
|
|
24
|
+
UseFIPS?: boolean;
|
|
25
|
+
Endpoint?: string;
|
|
26
|
+
}
|
|
@@ -37,12 +37,22 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
37
37
|
disableHostPrefix: boolean;
|
|
38
38
|
logger: import("@aws-sdk/types").Logger;
|
|
39
39
|
serviceId: string;
|
|
40
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
40
|
endpoint?:
|
|
42
|
-
|
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
| ((
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| import("@aws-sdk/types").EndpointV2
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
47
|
+
) &
|
|
48
|
+
(string | import("@aws-sdk/types").Provider<string>))
|
|
45
49
|
| undefined;
|
|
50
|
+
endpointProvider: (
|
|
51
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
52
|
+
context?: {
|
|
53
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
54
|
+
}
|
|
55
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
46
56
|
tls?: boolean | undefined;
|
|
47
57
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
58
|
credentials?:
|
|
@@ -37,12 +37,22 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
37
37
|
disableHostPrefix: boolean;
|
|
38
38
|
logger: import("@aws-sdk/types").Logger;
|
|
39
39
|
serviceId: string;
|
|
40
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
40
|
endpoint?:
|
|
42
|
-
|
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
| ((
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| import("@aws-sdk/types").EndpointV2
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
47
|
+
) &
|
|
48
|
+
(string | import("@aws-sdk/types").Provider<string>))
|
|
45
49
|
| undefined;
|
|
50
|
+
endpointProvider: (
|
|
51
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
52
|
+
context?: {
|
|
53
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
54
|
+
}
|
|
55
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
46
56
|
tls?: boolean | undefined;
|
|
47
57
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
58
|
credentials?:
|
|
@@ -29,7 +29,6 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
29
29
|
credentialDefaultProvider: (
|
|
30
30
|
input: any
|
|
31
31
|
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
32
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
33
32
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
34
33
|
import("@aws-sdk/types").UserAgent
|
|
35
34
|
>;
|
|
@@ -41,9 +40,21 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
41
40
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
42
41
|
endpoint?:
|
|
43
42
|
| string
|
|
44
|
-
| import("@aws-sdk/types").Endpoint
|
|
45
|
-
|
|
43
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> &
|
|
44
|
+
import("@aws-sdk/types").Provider<string>)
|
|
45
|
+
| (import("@aws-sdk/types").Endpoint &
|
|
46
|
+
import("@aws-sdk/types").Provider<string>)
|
|
47
|
+
| (import("@aws-sdk/types").EndpointV2 &
|
|
48
|
+
import("@aws-sdk/types").Provider<string>)
|
|
49
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> &
|
|
50
|
+
import("@aws-sdk/types").Provider<string>)
|
|
46
51
|
| undefined;
|
|
52
|
+
endpointProvider: (
|
|
53
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
54
|
+
context?: {
|
|
55
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
56
|
+
}
|
|
57
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
58
|
tls?: boolean | undefined;
|
|
48
59
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
60
|
credentials?:
|
|
@@ -3,8 +3,13 @@ import { PollyClientConfig } from "./PollyClient";
|
|
|
3
3
|
export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
4
4
|
apiVersion: string;
|
|
5
5
|
disableHostPrefix: boolean;
|
|
6
|
+
endpointProvider: (
|
|
7
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
8
|
+
context?: {
|
|
9
|
+
logger?: __Logger | undefined;
|
|
10
|
+
}
|
|
11
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
6
12
|
logger: __Logger;
|
|
7
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
8
13
|
serviceId: string;
|
|
9
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
10
15
|
};
|
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.
|
|
4
|
+
"version": "3.196.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,13 +19,14 @@
|
|
|
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.
|
|
22
|
+
"@aws-sdk/client-sts": "3.196.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.193.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.196.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.193.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.193.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.193.0",
|
|
28
28
|
"@aws-sdk/middleware-content-length": "3.193.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.193.0",
|
|
29
30
|
"@aws-sdk/middleware-host-header": "3.193.0",
|
|
30
31
|
"@aws-sdk/middleware-logger": "3.193.0",
|
|
31
32
|
"@aws-sdk/middleware-recursion-detection": "3.193.0",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
47
48
|
"@aws-sdk/util-defaults-mode-browser": "3.193.0",
|
|
48
49
|
"@aws-sdk/util-defaults-mode-node": "3.193.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.196.0",
|
|
49
51
|
"@aws-sdk/util-stream-browser": "3.193.0",
|
|
50
52
|
"@aws-sdk/util-stream-node": "3.193.0",
|
|
51
53
|
"@aws-sdk/util-user-agent-browser": "3.193.0",
|