@aws-sdk/client-transcribe-streaming 3.620.1 → 3.622.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/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +93 -35
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/TranscribeStreamingClient.js +21 -14
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/StartCallAnalyticsStreamTranscriptionCommand.js +3 -1
- package/dist-es/commands/StartMedicalStreamTranscriptionCommand.js +3 -1
- package/dist-es/commands/StartStreamTranscriptionCommand.js +3 -1
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/TranscribeStreamingClient.d.ts +15 -14
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +6 -4
- package/dist-types/runtimeConfig.d.ts +5 -3
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/TranscribeStreamingClient.d.ts +18 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -9
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -11
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +13 -13
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { EventStreamInputConfig, EventStreamResolvedConfig } from "@aws-sdk/middleware-eventstream";
|
|
2
2
|
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
-
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
4
3
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
5
4
|
import { WebSocketInputConfig, WebSocketResolvedConfig } from "@aws-sdk/middleware-websocket";
|
|
6
|
-
import {
|
|
5
|
+
import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
|
|
7
6
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
8
7
|
import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver";
|
|
9
8
|
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
10
9
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
11
10
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
12
11
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
13
|
-
import { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
12
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
13
|
+
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
14
14
|
import { StartCallAnalyticsStreamTranscriptionCommandInput, StartCallAnalyticsStreamTranscriptionCommandOutput } from "./commands/StartCallAnalyticsStreamTranscriptionCommand";
|
|
15
15
|
import { StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
|
|
16
16
|
import { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
|
|
@@ -102,20 +102,16 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
102
102
|
*/
|
|
103
103
|
region?: string | __Provider<string>;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
109
|
-
/**
|
|
110
|
-
* The function that provides necessary utilities for handling request event stream.
|
|
105
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
111
106
|
* @internal
|
|
112
107
|
*/
|
|
113
|
-
|
|
108
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
109
|
/**
|
|
115
|
-
*
|
|
110
|
+
* Default credentials provider; Not available in browser runtime.
|
|
111
|
+
* @deprecated
|
|
116
112
|
* @internal
|
|
117
113
|
*/
|
|
118
|
-
|
|
114
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
119
115
|
/**
|
|
120
116
|
* Value for how many times a request will be made at most in case of retry.
|
|
121
117
|
*/
|
|
@@ -142,11 +138,16 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
142
138
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
143
139
|
*/
|
|
144
140
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
141
|
+
/**
|
|
142
|
+
* The function that provides necessary utilities for handling request event stream.
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
145
146
|
}
|
|
146
147
|
/**
|
|
147
148
|
* @public
|
|
148
149
|
*/
|
|
149
|
-
export type TranscribeStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
150
|
+
export type TranscribeStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & EventStreamSerdeInputConfig & HttpAuthSchemeInputConfig & EventStreamInputConfig & WebSocketInputConfig & ClientInputEndpointParameters;
|
|
150
151
|
/**
|
|
151
152
|
* @public
|
|
152
153
|
*
|
|
@@ -157,7 +158,7 @@ export interface TranscribeStreamingClientConfig extends TranscribeStreamingClie
|
|
|
157
158
|
/**
|
|
158
159
|
* @public
|
|
159
160
|
*/
|
|
160
|
-
export type TranscribeStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
161
|
+
export type TranscribeStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig & EventStreamResolvedConfig & WebSocketResolvedConfig & ClientResolvedEndpointParameters;
|
|
161
162
|
/**
|
|
162
163
|
* @public
|
|
163
164
|
*
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
|
+
import { TranscribeStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export interface HttpAuthExtensionConfiguration {
|
|
7
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
8
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
9
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider): void;
|
|
10
|
+
httpAuthSchemeProvider(): TranscribeStreamingHttpAuthSchemeProvider;
|
|
11
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
12
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
18
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
19
|
+
httpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider;
|
|
20
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
2
|
+
import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
|
|
3
|
+
import { TranscribeStreamingClientResolvedConfig } from "../TranscribeStreamingClient";
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
export interface TranscribeStreamingHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
8
|
+
region?: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
export interface TranscribeStreamingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<TranscribeStreamingClientResolvedConfig, HandlerExecutionContext, TranscribeStreamingHttpAuthSchemeParameters, object> {
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const defaultTranscribeStreamingHttpAuthSchemeParametersProvider: (config: TranscribeStreamingClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<TranscribeStreamingHttpAuthSchemeParameters>;
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
export interface TranscribeStreamingHttpAuthSchemeProvider extends HttpAuthSchemeProvider<TranscribeStreamingHttpAuthSchemeParameters> {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
export declare const defaultTranscribeStreamingHttpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider;
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
|
+
/**
|
|
33
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
/**
|
|
38
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
httpAuthSchemeProvider?: TranscribeStreamingHttpAuthSchemeProvider;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
|
+
/**
|
|
48
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
52
|
+
/**
|
|
53
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
readonly httpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
4
5
|
/**
|
|
5
6
|
* @internal
|
|
6
7
|
*/
|
|
7
|
-
export interface TranscribeStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
|
|
8
|
+
export interface TranscribeStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
|
|
8
9
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
|
|
13
13
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
@@ -29,17 +29,19 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
29
29
|
serviceId: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
32
34
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
33
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
34
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
37
|
}) => import("@smithy/types").EndpointV2;
|
|
36
38
|
tls?: boolean | undefined;
|
|
37
|
-
|
|
39
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
41
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
38
42
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
39
43
|
signingEscapePath?: boolean | undefined;
|
|
40
44
|
systemClockOffset?: number | undefined;
|
|
41
45
|
signingRegion?: string | undefined;
|
|
42
46
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
43
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
45
47
|
};
|
|
@@ -29,17 +29,19 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
29
29
|
serviceId: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
32
34
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
33
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
34
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
37
|
}) => import("@smithy/types").EndpointV2;
|
|
36
38
|
tls?: boolean | undefined;
|
|
37
|
-
|
|
39
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
41
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
38
42
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
39
43
|
signingEscapePath?: boolean | undefined;
|
|
40
44
|
systemClockOffset?: number | undefined;
|
|
41
45
|
signingRegion?: string | undefined;
|
|
42
46
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
43
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
45
47
|
};
|
|
@@ -23,25 +23,27 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
region: string | import("@smithy/types").Provider<any>;
|
|
26
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
27
26
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
27
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
28
28
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
29
29
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
32
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
33
33
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
34
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
36
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
35
37
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
38
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
39
|
}) => import("@smithy/types").EndpointV2;
|
|
38
40
|
tls?: boolean | undefined;
|
|
39
|
-
|
|
41
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
43
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
44
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
45
|
signingEscapePath?: boolean | undefined;
|
|
42
46
|
systemClockOffset?: number | undefined;
|
|
43
47
|
signingRegion?: string | undefined;
|
|
44
48
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
47
49
|
};
|
|
@@ -11,6 +11,8 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
12
12
|
}) => import("@smithy/types").EndpointV2;
|
|
13
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
14
16
|
logger: import("@smithy/types").Logger;
|
|
15
17
|
serviceId: string;
|
|
16
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -6,10 +6,6 @@ import {
|
|
|
6
6
|
HostHeaderInputConfig,
|
|
7
7
|
HostHeaderResolvedConfig,
|
|
8
8
|
} from "@aws-sdk/middleware-host-header";
|
|
9
|
-
import {
|
|
10
|
-
AwsAuthInputConfig,
|
|
11
|
-
AwsAuthResolvedConfig,
|
|
12
|
-
} from "@aws-sdk/middleware-signing";
|
|
13
9
|
import {
|
|
14
10
|
UserAgentInputConfig,
|
|
15
11
|
UserAgentResolvedConfig,
|
|
@@ -18,10 +14,7 @@ import {
|
|
|
18
14
|
WebSocketInputConfig,
|
|
19
15
|
WebSocketResolvedConfig,
|
|
20
16
|
} from "@aws-sdk/middleware-websocket";
|
|
21
|
-
import {
|
|
22
|
-
Credentials as __Credentials,
|
|
23
|
-
EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider,
|
|
24
|
-
} from "@aws-sdk/types";
|
|
17
|
+
import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
|
|
25
18
|
import {
|
|
26
19
|
RegionInputConfig,
|
|
27
20
|
RegionResolvedConfig,
|
|
@@ -46,6 +39,7 @@ import {
|
|
|
46
39
|
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
47
40
|
} from "@smithy/smithy-client";
|
|
48
41
|
import {
|
|
42
|
+
AwsCredentialIdentityProvider,
|
|
49
43
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
50
44
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
51
45
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -61,6 +55,10 @@ import {
|
|
|
61
55
|
UrlParser as __UrlParser,
|
|
62
56
|
UserAgent as __UserAgent,
|
|
63
57
|
} from "@smithy/types";
|
|
58
|
+
import {
|
|
59
|
+
HttpAuthSchemeInputConfig,
|
|
60
|
+
HttpAuthSchemeResolvedConfig,
|
|
61
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
64
62
|
import {
|
|
65
63
|
StartCallAnalyticsStreamTranscriptionCommandInput,
|
|
66
64
|
StartCallAnalyticsStreamTranscriptionCommandOutput,
|
|
@@ -105,29 +103,29 @@ export interface ClientDefaults
|
|
|
105
103
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
106
104
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
107
105
|
region?: string | __Provider<string>;
|
|
108
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
109
|
-
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
110
106
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
107
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
111
108
|
maxAttempts?: number | __Provider<number>;
|
|
112
109
|
retryMode?: string | __Provider<string>;
|
|
113
110
|
logger?: __Logger;
|
|
114
111
|
extensions?: RuntimeExtension[];
|
|
115
112
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
116
113
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
114
|
+
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
117
115
|
}
|
|
118
116
|
export type TranscribeStreamingClientConfigType = Partial<
|
|
119
117
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
120
118
|
> &
|
|
121
119
|
ClientDefaults &
|
|
120
|
+
UserAgentInputConfig &
|
|
121
|
+
RetryInputConfig &
|
|
122
122
|
RegionInputConfig &
|
|
123
|
-
EndpointInputConfig<EndpointParameters> &
|
|
124
123
|
HostHeaderInputConfig &
|
|
125
|
-
|
|
124
|
+
EndpointInputConfig<EndpointParameters> &
|
|
125
|
+
EventStreamSerdeInputConfig &
|
|
126
|
+
HttpAuthSchemeInputConfig &
|
|
126
127
|
EventStreamInputConfig &
|
|
127
128
|
WebSocketInputConfig &
|
|
128
|
-
UserAgentInputConfig &
|
|
129
|
-
RetryInputConfig &
|
|
130
|
-
EventStreamSerdeInputConfig &
|
|
131
129
|
ClientInputEndpointParameters;
|
|
132
130
|
export interface TranscribeStreamingClientConfig
|
|
133
131
|
extends TranscribeStreamingClientConfigType {}
|
|
@@ -135,15 +133,15 @@ export type TranscribeStreamingClientResolvedConfigType =
|
|
|
135
133
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
136
134
|
Required<ClientDefaults> &
|
|
137
135
|
RuntimeExtensionsConfig &
|
|
136
|
+
UserAgentResolvedConfig &
|
|
137
|
+
RetryResolvedConfig &
|
|
138
138
|
RegionResolvedConfig &
|
|
139
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
140
139
|
HostHeaderResolvedConfig &
|
|
141
|
-
|
|
140
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
141
|
+
EventStreamSerdeResolvedConfig &
|
|
142
|
+
HttpAuthSchemeResolvedConfig &
|
|
142
143
|
EventStreamResolvedConfig &
|
|
143
144
|
WebSocketResolvedConfig &
|
|
144
|
-
UserAgentResolvedConfig &
|
|
145
|
-
RetryResolvedConfig &
|
|
146
|
-
EventStreamSerdeResolvedConfig &
|
|
147
145
|
ClientResolvedEndpointParameters;
|
|
148
146
|
export interface TranscribeStreamingClientResolvedConfig
|
|
149
147
|
extends TranscribeStreamingClientResolvedConfigType {}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { TranscribeStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): TranscribeStreamingHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
} from "@smithy/types";
|
|
13
|
+
import { TranscribeStreamingClientResolvedConfig } from "../TranscribeStreamingClient";
|
|
14
|
+
export interface TranscribeStreamingHttpAuthSchemeParameters
|
|
15
|
+
extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface TranscribeStreamingHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
TranscribeStreamingClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
TranscribeStreamingHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultTranscribeStreamingHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: TranscribeStreamingClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<TranscribeStreamingHttpAuthSchemeParameters>;
|
|
30
|
+
export interface TranscribeStreamingHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<TranscribeStreamingHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultTranscribeStreamingHttpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
|
+
httpAuthSchemeProvider?: TranscribeStreamingHttpAuthSchemeProvider;
|
|
36
|
+
}
|
|
37
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
38
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
39
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
40
|
+
readonly httpAuthSchemeProvider: TranscribeStreamingHttpAuthSchemeProvider;
|
|
41
|
+
}
|
|
42
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
43
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
44
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
4
5
|
export interface TranscribeStreamingExtensionConfiguration
|
|
5
6
|
extends HttpHandlerExtensionConfiguration,
|
|
6
7
|
DefaultExtensionConfiguration,
|
|
7
|
-
AwsRegionExtensionConfiguration
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -10,7 +10,7 @@ export declare const getRuntimeConfig: (
|
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider: (
|
|
12
12
|
input: any
|
|
13
|
-
) => import("@smithy/types").
|
|
13
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
14
14
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
15
|
import("@smithy/types").UserAgent
|
|
16
16
|
>;
|
|
@@ -34,6 +34,11 @@ export declare const getRuntimeConfig: (
|
|
|
34
34
|
serviceId: string;
|
|
35
35
|
logger: import("@smithy/types").Logger;
|
|
36
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
38
|
+
retryStrategy?:
|
|
39
|
+
| import("@smithy/types").RetryStrategy
|
|
40
|
+
| import("@smithy/types").RetryStrategyV2
|
|
41
|
+
| undefined;
|
|
37
42
|
endpoint?:
|
|
38
43
|
| ((
|
|
39
44
|
| string
|
|
@@ -58,11 +63,11 @@ export declare const getRuntimeConfig: (
|
|
|
58
63
|
}
|
|
59
64
|
) => import("@smithy/types").EndpointV2;
|
|
60
65
|
tls?: boolean | undefined;
|
|
66
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
61
68
|
credentials?:
|
|
62
69
|
| import("@smithy/types").AwsCredentialIdentity
|
|
63
|
-
| import("@smithy/types").
|
|
64
|
-
import("@smithy/types").AwsCredentialIdentity
|
|
65
|
-
>
|
|
70
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
66
71
|
| undefined;
|
|
67
72
|
signer?:
|
|
68
73
|
| import("@smithy/types").RequestSigner
|
|
@@ -79,9 +84,4 @@ export declare const getRuntimeConfig: (
|
|
|
79
84
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
80
85
|
) => import("@smithy/types").RequestSigner)
|
|
81
86
|
| undefined;
|
|
82
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
83
|
-
retryStrategy?:
|
|
84
|
-
| import("@smithy/types").RetryStrategy
|
|
85
|
-
| import("@smithy/types").RetryStrategyV2
|
|
86
|
-
| undefined;
|
|
87
87
|
};
|
|
@@ -40,6 +40,11 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
serviceId: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
+
retryStrategy?:
|
|
45
|
+
| import("@smithy/types").RetryStrategy
|
|
46
|
+
| import("@smithy/types").RetryStrategyV2
|
|
47
|
+
| undefined;
|
|
43
48
|
endpoint?:
|
|
44
49
|
| ((
|
|
45
50
|
| string
|
|
@@ -64,11 +69,11 @@ export declare const getRuntimeConfig: (
|
|
|
64
69
|
}
|
|
65
70
|
) => import("@smithy/types").EndpointV2;
|
|
66
71
|
tls?: boolean | undefined;
|
|
72
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
73
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
67
74
|
credentials?:
|
|
68
75
|
| import("@smithy/types").AwsCredentialIdentity
|
|
69
|
-
| import("@smithy/types").
|
|
70
|
-
import("@smithy/types").AwsCredentialIdentity
|
|
71
|
-
>
|
|
76
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
72
77
|
| undefined;
|
|
73
78
|
signer?:
|
|
74
79
|
| import("@smithy/types").RequestSigner
|
|
@@ -85,9 +90,4 @@ export declare const getRuntimeConfig: (
|
|
|
85
90
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
86
91
|
) => import("@smithy/types").RequestSigner)
|
|
87
92
|
| undefined;
|
|
88
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
89
|
-
retryStrategy?:
|
|
90
|
-
| import("@smithy/types").RetryStrategy
|
|
91
|
-
| import("@smithy/types").RetryStrategyV2
|
|
92
|
-
| undefined;
|
|
93
93
|
};
|
|
@@ -36,12 +36,12 @@ export declare const getRuntimeConfig: (
|
|
|
36
36
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
37
37
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
38
38
|
region: string | import("@smithy/types").Provider<any>;
|
|
39
|
-
credentialDefaultProvider: (
|
|
40
|
-
input: any
|
|
41
|
-
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
42
39
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
43
40
|
import("@smithy/types").UserAgent
|
|
44
41
|
>;
|
|
42
|
+
credentialDefaultProvider: (
|
|
43
|
+
input: any
|
|
44
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
45
45
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
46
46
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
47
47
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,6 +52,11 @@ export declare const getRuntimeConfig: (
|
|
|
52
52
|
| import("@smithy/types").Provider<
|
|
53
53
|
import("@smithy/smithy-client").DefaultsMode
|
|
54
54
|
>;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
56
|
+
retryStrategy?:
|
|
57
|
+
| import("@smithy/types").RetryStrategy
|
|
58
|
+
| import("@smithy/types").RetryStrategyV2
|
|
59
|
+
| undefined;
|
|
55
60
|
endpoint?:
|
|
56
61
|
| string
|
|
57
62
|
| import("@smithy/types").Endpoint
|
|
@@ -66,11 +71,11 @@ export declare const getRuntimeConfig: (
|
|
|
66
71
|
}
|
|
67
72
|
) => import("@smithy/types").EndpointV2;
|
|
68
73
|
tls?: boolean | undefined;
|
|
74
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
75
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
69
76
|
credentials?:
|
|
70
77
|
| import("@smithy/types").AwsCredentialIdentity
|
|
71
|
-
| import("@smithy/types").
|
|
72
|
-
import("@smithy/types").AwsCredentialIdentity
|
|
73
|
-
>
|
|
78
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
74
79
|
| undefined;
|
|
75
80
|
signer?:
|
|
76
81
|
| import("@smithy/types").RequestSigner
|
|
@@ -87,9 +92,4 @@ export declare const getRuntimeConfig: (
|
|
|
87
92
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
88
93
|
) => import("@smithy/types").RequestSigner)
|
|
89
94
|
| undefined;
|
|
90
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
91
|
-
retryStrategy?:
|
|
92
|
-
| import("@smithy/types").RetryStrategy
|
|
93
|
-
| import("@smithy/types").RetryStrategyV2
|
|
94
|
-
| undefined;
|
|
95
95
|
};
|
|
@@ -13,6 +13,8 @@ export declare const getRuntimeConfig: (
|
|
|
13
13
|
}
|
|
14
14
|
) => import("@smithy/types").EndpointV2;
|
|
15
15
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
16
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
17
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
18
|
logger: import("@smithy/types").Logger;
|
|
17
19
|
serviceId: string;
|
|
18
20
|
urlParser: import("@smithy/types").UrlParser;
|