@aws-sdk/client-polly 3.194.0 → 3.197.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 +22 -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 +34 -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 +23 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +23 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +30 -28
- 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,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@aws-sdk/middleware-endpoint";
|
|
2
3
|
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
4
|
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
5
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
6
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
7
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
8
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider,
|
|
9
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
10
|
import { DeleteLexiconCommandInput, DeleteLexiconCommandOutput } from "./commands/DeleteLexiconCommand";
|
|
10
11
|
import { DescribeVoicesCommandInput, DescribeVoicesCommandOutput } from "./commands/DescribeVoicesCommand";
|
|
11
12
|
import { GetLexiconCommandInput, GetLexiconCommandOutput } from "./commands/GetLexiconCommand";
|
|
@@ -15,6 +16,7 @@ import { ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOu
|
|
|
15
16
|
import { PutLexiconCommandInput, PutLexiconCommandOutput } from "./commands/PutLexiconCommand";
|
|
16
17
|
import { StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput } from "./commands/StartSpeechSynthesisTaskCommand";
|
|
17
18
|
import { SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput } from "./commands/SynthesizeSpeechCommand";
|
|
19
|
+
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
18
20
|
export declare type ServiceInputTypes = DeleteLexiconCommandInput | DescribeVoicesCommandInput | GetLexiconCommandInput | GetSpeechSynthesisTaskCommandInput | ListLexiconsCommandInput | ListSpeechSynthesisTasksCommandInput | PutLexiconCommandInput | StartSpeechSynthesisTaskCommandInput | SynthesizeSpeechCommandInput;
|
|
19
21
|
export declare type ServiceOutputTypes = DeleteLexiconCommandOutput | DescribeVoicesCommandOutput | GetLexiconCommandOutput | GetSpeechSynthesisTaskCommandOutput | ListLexiconsCommandOutput | ListSpeechSynthesisTasksCommandOutput | PutLexiconCommandOutput | StartSpeechSynthesisTaskCommandOutput | SynthesizeSpeechCommandOutput;
|
|
20
22
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
@@ -107,11 +109,6 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
107
109
|
* @internal
|
|
108
110
|
*/
|
|
109
111
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
-
/**
|
|
111
|
-
* Fetch related hostname, signing name or signing region with given region.
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
115
112
|
/**
|
|
116
113
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
117
114
|
* @internal
|
|
@@ -127,13 +124,13 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
127
124
|
*/
|
|
128
125
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
129
126
|
}
|
|
130
|
-
declare type PollyClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig &
|
|
127
|
+
declare type PollyClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
131
128
|
/**
|
|
132
129
|
* The configuration interface of PollyClient class constructor that set the region, credentials and other options.
|
|
133
130
|
*/
|
|
134
131
|
export interface PollyClientConfig extends PollyClientConfigType {
|
|
135
132
|
}
|
|
136
|
-
declare type PollyClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig &
|
|
133
|
+
declare type PollyClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
137
134
|
/**
|
|
138
135
|
* The resolved configuration interface of PollyClient class. This is resolved and normalized from the {@link PollyClientConfig | constructor configuration interface}.
|
|
139
136
|
*/
|
|
@@ -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 { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, 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> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
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> | 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>)) | 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> | 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>)) | 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 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
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> | 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,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region?: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|
|
@@ -37,12 +37,31 @@ 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
|
+
(
|
|
49
|
+
| string
|
|
50
|
+
| import("@aws-sdk/types").Provider<string>
|
|
51
|
+
| import("@aws-sdk/types").Endpoint
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
53
|
+
| import("@aws-sdk/types").EndpointV2
|
|
54
|
+
| import("@aws-sdk/types").Provider<
|
|
55
|
+
import("@aws-sdk/types").EndpointV2
|
|
56
|
+
>
|
|
57
|
+
))
|
|
45
58
|
| undefined;
|
|
59
|
+
endpointProvider: (
|
|
60
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
61
|
+
context?: {
|
|
62
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
63
|
+
}
|
|
64
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
46
65
|
tls?: boolean | undefined;
|
|
47
66
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
67
|
credentials?:
|
|
@@ -37,12 +37,31 @@ 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
|
+
(
|
|
49
|
+
| string
|
|
50
|
+
| import("@aws-sdk/types").Provider<string>
|
|
51
|
+
| import("@aws-sdk/types").Endpoint
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
53
|
+
| import("@aws-sdk/types").EndpointV2
|
|
54
|
+
| import("@aws-sdk/types").Provider<
|
|
55
|
+
import("@aws-sdk/types").EndpointV2
|
|
56
|
+
>
|
|
57
|
+
))
|
|
45
58
|
| undefined;
|
|
59
|
+
endpointProvider: (
|
|
60
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
61
|
+
context?: {
|
|
62
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
63
|
+
}
|
|
64
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
46
65
|
tls?: boolean | undefined;
|
|
47
66
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
67
|
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
|
>;
|
|
@@ -43,7 +42,15 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
|
|
|
43
42
|
| string
|
|
44
43
|
| import("@aws-sdk/types").Endpoint
|
|
45
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>
|
|
46
47
|
| undefined;
|
|
48
|
+
endpointProvider: (
|
|
49
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
50
|
+
context?: {
|
|
51
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
52
|
+
}
|
|
53
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
54
|
tls?: boolean | undefined;
|
|
48
55
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
56
|
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
|
};
|