@aws-sdk/nested-clients 3.799.0 → 3.804.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +1 -1
  2. package/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +1 -3
  3. package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +17 -17
  4. package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +15 -15
  5. package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +18 -18
  6. package/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +3 -3
  7. package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +1 -1
  8. package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +1 -1
  9. package/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +1 -3
  10. package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +19 -19
  11. package/dist-types/submodules/sts/runtimeConfig.d.ts +18 -18
  12. package/dist-types/submodules/sts/runtimeConfig.native.d.ts +20 -20
  13. package/dist-types/submodules/sts/runtimeConfig.shared.d.ts +4 -4
  14. package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +1 -1
  15. package/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +1 -4
  16. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +22 -32
  17. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +19 -26
  18. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +23 -33
  19. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +3 -3
  20. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +1 -4
  23. package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +25 -40
  24. package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +25 -37
  25. package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +26 -41
  26. package/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +5 -7
  27. package/package.json +19 -19
@@ -8,9 +8,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
8
8
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  defaultUserAgentProvider: (
11
- config?:
12
- | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
13
- | undefined
11
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
14
12
  ) => Promise<import("@smithy/types").UserAgent>;
15
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
14
  region: string | import("@smithy/types").Provider<string>;
@@ -27,19 +25,18 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
27
25
  cacheMiddleware?: boolean | undefined;
28
26
  urlParser: import("@smithy/types").UrlParser;
29
27
  base64Decoder: import("@smithy/types").Decoder;
30
- base64Encoder: (_input: string | Uint8Array) => string;
28
+ base64Encoder: (_input: Uint8Array | string) => string;
31
29
  utf8Decoder: import("@smithy/types").Decoder;
32
- utf8Encoder: (input: string | Uint8Array) => string;
30
+ utf8Encoder: (input: Uint8Array | string) => string;
33
31
  disableHostPrefix: boolean;
34
32
  serviceId: string;
35
- profile?: string | undefined;
33
+ profile?: string;
36
34
  logger: import("@smithy/types").Logger;
37
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
38
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent;
39
37
  retryStrategy?:
40
38
  | import("@smithy/types").RetryStrategy
41
- | import("@smithy/types").RetryStrategyV2
42
- | undefined;
39
+ | import("@smithy/types").RetryStrategyV2;
43
40
  endpoint?:
44
41
  | ((
45
42
  | string
@@ -60,11 +57,11 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
60
57
  endpointProvider: (
61
58
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
62
59
  context?: {
63
- logger?: import("@smithy/types").Logger | undefined;
60
+ logger?: import("@smithy/types").Logger;
64
61
  }
65
62
  ) => import("@smithy/types").EndpointV2;
66
- tls?: boolean | undefined;
67
- serviceConfiguredEndpoint?: undefined;
63
+ tls?: boolean;
64
+ serviceConfiguredEndpoint?: never;
68
65
  httpAuthSchemes:
69
66
  | import("@smithy/types").HttpAuthScheme[]
70
67
  | (
@@ -94,21 +91,17 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
94
91
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
95
92
  credentials?:
96
93
  | import("@smithy/types").AwsCredentialIdentity
97
- | import("@smithy/types").AwsCredentialIdentityProvider
98
- | undefined;
94
+ | import("@smithy/types").AwsCredentialIdentityProvider;
99
95
  signer?:
100
96
  | import("@smithy/types").RequestSigner
101
97
  | ((
102
- authScheme?: import("@smithy/types").AuthScheme | undefined
103
- ) => Promise<import("@smithy/types").RequestSigner>)
104
- | undefined;
105
- signingEscapePath?: boolean | undefined;
106
- systemClockOffset?: number | undefined;
107
- signingRegion?: string | undefined;
108
- signerConstructor?:
109
- | (new (
110
- options: import("@smithy/signature-v4").SignatureV4Init &
111
- import("@smithy/signature-v4").SignatureV4CryptoInit
112
- ) => import("@smithy/types").RequestSigner)
113
- | undefined;
98
+ authScheme?: import("@smithy/types").AuthScheme
99
+ ) => Promise<import("@smithy/types").RequestSigner>);
100
+ signingEscapePath?: boolean;
101
+ systemClockOffset?: number;
102
+ signingRegion?: string;
103
+ signerConstructor?: new (
104
+ options: import("@smithy/signature-v4").SignatureV4Init &
105
+ import("@smithy/signature-v4").SignatureV4CryptoInit
106
+ ) => import("@smithy/types").RequestSigner;
114
107
  };
@@ -9,24 +9,22 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
9
9
  | import("@smithy/protocol-http").HttpHandler<any>
10
10
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
11
  apiVersion: string;
12
- cacheMiddleware?: boolean | undefined;
12
+ cacheMiddleware?: boolean;
13
13
  urlParser: import("@smithy/types").UrlParser;
14
14
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
15
  streamCollector: import("@smithy/types").StreamCollector;
16
16
  base64Decoder: import("@smithy/types").Decoder;
17
- base64Encoder: (_input: string | Uint8Array) => string;
17
+ base64Encoder: (_input: Uint8Array | string) => string;
18
18
  utf8Decoder: import("@smithy/types").Decoder;
19
- utf8Encoder: (input: string | Uint8Array) => string;
19
+ utf8Encoder: (input: Uint8Array | string) => string;
20
20
  disableHostPrefix: boolean;
21
21
  serviceId: string;
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
- profile?: string | undefined;
25
+ profile?: string;
26
26
  defaultUserAgentProvider: (
27
- config?:
28
- | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
- | undefined
27
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
30
28
  ) => Promise<import("@smithy/types").UserAgent>;
31
29
  maxAttempts: number | import("@smithy/types").Provider<number>;
32
30
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -37,15 +35,14 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
37
35
  | import("@smithy/types").Provider<
38
36
  import("@smithy/smithy-client").DefaultsMode
39
37
  >;
40
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
38
+ customUserAgent?: string | import("@smithy/types").UserAgent;
41
39
  userAgentAppId?:
42
40
  | string
43
- | import("@smithy/types").Provider<string | undefined>
44
- | undefined;
41
+ | undefined
42
+ | import("@smithy/types").Provider<string | undefined>;
45
43
  retryStrategy?:
46
44
  | import("@smithy/types").RetryStrategy
47
- | import("@smithy/types").RetryStrategyV2
48
- | undefined;
45
+ | import("@smithy/types").RetryStrategyV2;
49
46
  endpoint?:
50
47
  | ((
51
48
  | string
@@ -66,15 +63,12 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
66
63
  endpointProvider: (
67
64
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
65
  context?: {
69
- logger?: import("@smithy/types").Logger | undefined;
66
+ logger?: import("@smithy/types").Logger;
70
67
  }
71
68
  ) => import("@smithy/types").EndpointV2;
72
- tls?: boolean | undefined;
73
- serviceConfiguredEndpoint?: undefined;
74
- authSchemePreference?:
75
- | string[]
76
- | import("@smithy/types").Provider<string[]>
77
- | undefined;
69
+ tls?: boolean;
70
+ serviceConfiguredEndpoint?: never;
71
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
78
72
  httpAuthSchemes:
79
73
  | import("@smithy/types").HttpAuthScheme[]
80
74
  | (
@@ -104,21 +98,17 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
104
98
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
105
99
  credentials?:
106
100
  | import("@smithy/types").AwsCredentialIdentity
107
- | import("@smithy/types").AwsCredentialIdentityProvider
108
- | undefined;
101
+ | import("@smithy/types").AwsCredentialIdentityProvider;
109
102
  signer?:
110
103
  | import("@smithy/types").RequestSigner
111
104
  | ((
112
- authScheme?: import("@smithy/types").AuthScheme | undefined
113
- ) => Promise<import("@smithy/types").RequestSigner>)
114
- | undefined;
115
- signingEscapePath?: boolean | undefined;
116
- systemClockOffset?: number | undefined;
117
- signingRegion?: string | undefined;
118
- signerConstructor?:
119
- | (new (
120
- options: import("@smithy/signature-v4").SignatureV4Init &
121
- import("@smithy/signature-v4").SignatureV4CryptoInit
122
- ) => import("@smithy/types").RequestSigner)
123
- | undefined;
105
+ authScheme?: import("@smithy/types").AuthScheme
106
+ ) => Promise<import("@smithy/types").RequestSigner>);
107
+ signingEscapePath?: boolean;
108
+ systemClockOffset?: number;
109
+ signingRegion?: string;
110
+ signerConstructor?: new (
111
+ options: import("@smithy/signature-v4").SignatureV4Init &
112
+ import("@smithy/signature-v4").SignatureV4CryptoInit
113
+ ) => import("@smithy/types").RequestSigner;
124
114
  };
@@ -5,12 +5,12 @@ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
5
5
  export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: (_input: string | Uint8Array) => string;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (
11
11
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
12
12
  context?: {
13
- logger?: import("@smithy/types").Logger | undefined;
13
+ logger?: import("@smithy/types").Logger;
14
14
  }
15
15
  ) => import("@smithy/types").EndpointV2;
16
16
  extensions: import("./runtimeExtensions").RuntimeExtension[];
@@ -45,5 +45,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
45
45
  serviceId: string;
46
46
  urlParser: import("@smithy/types").UrlParser;
47
47
  utf8Decoder: import("@smithy/types").Decoder;
48
- utf8Encoder: (input: string | Uint8Array) => string;
48
+ utf8Encoder: (input: Uint8Array | string) => string;
49
49
  };
@@ -23,7 +23,7 @@ declare const AssumeRoleCommand_base: {
23
23
  ServiceOutputTypes
24
24
  >;
25
25
  new (
26
- __0_0: AssumeRoleCommandInput
26
+ input: AssumeRoleCommandInput
27
27
  ): import("@smithy/smithy-client").CommandImpl<
28
28
  AssumeRoleCommandInput,
29
29
  AssumeRoleCommandOutput,
@@ -27,7 +27,7 @@ declare const AssumeRoleWithWebIdentityCommand_base: {
27
27
  ServiceOutputTypes
28
28
  >;
29
29
  new (
30
- __0_0: AssumeRoleWithWebIdentityCommandInput
30
+ input: AssumeRoleWithWebIdentityCommandInput
31
31
  ): import("@smithy/smithy-client").CommandImpl<
32
32
  AssumeRoleWithWebIdentityCommandInput,
33
33
  AssumeRoleWithWebIdentityCommandOutput,
@@ -22,10 +22,7 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
22
22
  };
23
23
  export declare const resolveClientEndpointParameters: <T>(
24
24
  options: T & ClientInputEndpointParameters
25
- ) => T &
26
- ClientInputEndpointParameters & {
27
- defaultSigningName: string;
28
- };
25
+ ) => T & ClientResolvedEndpointParameters;
29
26
  export declare const commonParams: {
30
27
  readonly UseGlobalEndpoint: {
31
28
  readonly type: "builtInParams";
@@ -12,9 +12,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
12
12
  _: unknown
13
13
  ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
14
  defaultUserAgentProvider: (
15
- config?:
16
- | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
17
- | undefined
15
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
18
16
  ) => Promise<import("@smithy/types").UserAgent>;
19
17
  maxAttempts: number | import("@smithy/types").Provider<number>;
20
18
  region: string | import("@smithy/types").Provider<any>;
@@ -30,23 +28,22 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
30
28
  cacheMiddleware?: boolean | undefined;
31
29
  urlParser: import("@smithy/types").UrlParser;
32
30
  base64Decoder: import("@smithy/types").Decoder;
33
- base64Encoder: (_input: string | Uint8Array) => string;
31
+ base64Encoder: (_input: Uint8Array | string) => string;
34
32
  utf8Decoder: import("@smithy/types").Decoder;
35
- utf8Encoder: (input: string | Uint8Array) => string;
33
+ utf8Encoder: (input: Uint8Array | string) => string;
36
34
  disableHostPrefix: boolean;
37
35
  serviceId: string;
38
- profile?: string | undefined;
36
+ profile?: string;
39
37
  logger: import("@smithy/types").Logger;
40
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
39
+ customUserAgent?: string | import("@smithy/types").UserAgent;
42
40
  userAgentAppId?:
43
41
  | string
44
- | import("@smithy/types").Provider<string | undefined>
45
- | undefined;
42
+ | undefined
43
+ | import("@smithy/types").Provider<string | undefined>;
46
44
  retryStrategy?:
47
45
  | import("@smithy/types").RetryStrategy
48
- | import("@smithy/types").RetryStrategyV2
49
- | undefined;
46
+ | import("@smithy/types").RetryStrategyV2;
50
47
  endpoint?:
51
48
  | ((
52
49
  | string
@@ -66,18 +63,13 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
66
63
  | undefined;
67
64
  endpointProvider: (
68
65
  params: import("./endpoint/EndpointParameters").EndpointParameters,
69
- context?:
70
- | {
71
- logger?: import("@smithy/types").Logger | undefined;
72
- }
73
- | undefined
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger;
68
+ }
74
69
  ) => import("@smithy/types").EndpointV2;
75
- tls?: boolean | undefined;
76
- serviceConfiguredEndpoint?: undefined;
77
- authSchemePreference?:
78
- | string[]
79
- | import("@smithy/types").Provider<string[]>
80
- | undefined;
70
+ tls?: boolean;
71
+ serviceConfiguredEndpoint?: never;
72
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
81
73
  httpAuthSchemes:
82
74
  | import("@smithy/types").HttpAuthScheme[]
83
75
  | (
@@ -107,25 +99,18 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
107
99
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
108
100
  credentials?:
109
101
  | import("@smithy/types").AwsCredentialIdentity
110
- | import("@smithy/types").AwsCredentialIdentityProvider
111
- | undefined;
102
+ | import("@smithy/types").AwsCredentialIdentityProvider;
112
103
  signer?:
113
104
  | import("@smithy/types").RequestSigner
114
105
  | ((
115
- authScheme?: import("@smithy/types").AuthScheme | undefined
116
- ) => Promise<import("@smithy/types").RequestSigner>)
117
- | undefined;
118
- signingEscapePath?: boolean | undefined;
119
- systemClockOffset?: number | undefined;
120
- signingRegion?: string | undefined;
121
- signerConstructor?:
122
- | (new (
123
- options: import("@smithy/signature-v4").SignatureV4Init &
124
- import("@smithy/signature-v4").SignatureV4CryptoInit
125
- ) => import("@smithy/types").RequestSigner)
126
- | undefined;
127
- useGlobalEndpoint?:
128
- | boolean
129
- | import("@smithy/types").Provider<boolean>
130
- | undefined;
106
+ authScheme?: import("@smithy/types").AuthScheme
107
+ ) => Promise<import("@smithy/types").RequestSigner>);
108
+ signingEscapePath?: boolean;
109
+ systemClockOffset?: number;
110
+ signingRegion?: string;
111
+ signerConstructor?: new (
112
+ options: import("@smithy/signature-v4").SignatureV4Init &
113
+ import("@smithy/signature-v4").SignatureV4CryptoInit
114
+ ) => import("@smithy/types").RequestSigner;
115
+ useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
131
116
  };
@@ -10,9 +10,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
10
10
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
11
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
12
  defaultUserAgentProvider: (
13
- config?:
14
- | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
15
- | undefined
13
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
16
14
  ) => Promise<import("@smithy/types").UserAgent>;
17
15
  httpAuthSchemes:
18
16
  | import("@smithy/types").HttpAuthScheme[]
@@ -42,22 +40,21 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
42
40
  cacheMiddleware?: boolean | undefined;
43
41
  urlParser: import("@smithy/types").UrlParser;
44
42
  base64Decoder: import("@smithy/types").Decoder;
45
- base64Encoder: (_input: string | Uint8Array) => string;
43
+ base64Encoder: (_input: Uint8Array | string) => string;
46
44
  utf8Decoder: import("@smithy/types").Decoder;
47
- utf8Encoder: (input: string | Uint8Array) => string;
45
+ utf8Encoder: (input: Uint8Array | string) => string;
48
46
  disableHostPrefix: boolean;
49
47
  serviceId: string;
50
- profile?: string | undefined;
51
- credentialDefaultProvider?:
52
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
53
- | undefined;
48
+ profile?: string;
49
+ credentialDefaultProvider?: (
50
+ input: any
51
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
54
52
  logger: import("@smithy/types").Logger;
55
53
  extensions: import("./runtimeExtensions").RuntimeExtension[];
56
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
54
+ customUserAgent?: string | import("@smithy/types").UserAgent;
57
55
  retryStrategy?:
58
56
  | import("@smithy/types").RetryStrategy
59
- | import("@smithy/types").RetryStrategyV2
60
- | undefined;
57
+ | import("@smithy/types").RetryStrategyV2;
61
58
  endpoint?:
62
59
  | ((
63
60
  | string
@@ -77,36 +74,27 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
77
74
  | undefined;
78
75
  endpointProvider: (
79
76
  params: import("./endpoint/EndpointParameters").EndpointParameters,
80
- context?:
81
- | {
82
- logger?: import("@smithy/types").Logger | undefined;
83
- }
84
- | undefined
77
+ context?: {
78
+ logger?: import("@smithy/types").Logger;
79
+ }
85
80
  ) => import("@smithy/types").EndpointV2;
86
- tls?: boolean | undefined;
87
- serviceConfiguredEndpoint?: undefined;
81
+ tls?: boolean;
82
+ serviceConfiguredEndpoint?: never;
88
83
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
89
84
  credentials?:
90
85
  | import("@smithy/types").AwsCredentialIdentity
91
- | import("@smithy/types").AwsCredentialIdentityProvider
92
- | undefined;
86
+ | import("@smithy/types").AwsCredentialIdentityProvider;
93
87
  signer?:
94
88
  | import("@smithy/types").RequestSigner
95
89
  | ((
96
- authScheme?: import("@smithy/types").AuthScheme | undefined
97
- ) => Promise<import("@smithy/types").RequestSigner>)
98
- | undefined;
99
- signingEscapePath?: boolean | undefined;
100
- systemClockOffset?: number | undefined;
101
- signingRegion?: string | undefined;
102
- signerConstructor?:
103
- | (new (
104
- options: import("@smithy/signature-v4").SignatureV4Init &
105
- import("@smithy/signature-v4").SignatureV4CryptoInit
106
- ) => import("@smithy/types").RequestSigner)
107
- | undefined;
108
- useGlobalEndpoint?:
109
- | boolean
110
- | import("@smithy/types").Provider<boolean>
111
- | undefined;
90
+ authScheme?: import("@smithy/types").AuthScheme
91
+ ) => Promise<import("@smithy/types").RequestSigner>);
92
+ signingEscapePath?: boolean;
93
+ systemClockOffset?: number;
94
+ signingRegion?: string;
95
+ signerConstructor?: new (
96
+ options: import("@smithy/signature-v4").SignatureV4Init &
97
+ import("@smithy/signature-v4").SignatureV4CryptoInit
98
+ ) => import("@smithy/types").RequestSigner;
99
+ useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
112
100
  };
@@ -9,24 +9,22 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
9
9
  | import("@smithy/protocol-http").HttpHandler<any>
10
10
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
11
  apiVersion: string;
12
- cacheMiddleware?: boolean | undefined;
12
+ cacheMiddleware?: boolean;
13
13
  urlParser: import("@smithy/types").UrlParser;
14
14
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
15
  streamCollector: import("@smithy/types").StreamCollector;
16
16
  base64Decoder: import("@smithy/types").Decoder;
17
- base64Encoder: (_input: string | Uint8Array) => string;
17
+ base64Encoder: (_input: Uint8Array | string) => string;
18
18
  utf8Decoder: import("@smithy/types").Decoder;
19
- utf8Encoder: (input: string | Uint8Array) => string;
19
+ utf8Encoder: (input: Uint8Array | string) => string;
20
20
  disableHostPrefix: boolean;
21
21
  serviceId: string;
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
- profile?: string | undefined;
25
+ profile?: string;
26
26
  defaultUserAgentProvider: (
27
- config?:
28
- | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
- | undefined
27
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
30
28
  ) => Promise<import("@smithy/types").UserAgent>;
31
29
  credentialDefaultProvider:
32
30
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
@@ -42,15 +40,14 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
42
40
  | import("@smithy/types").Provider<
43
41
  import("@smithy/smithy-client").DefaultsMode
44
42
  >;
45
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
43
+ customUserAgent?: string | import("@smithy/types").UserAgent;
46
44
  userAgentAppId?:
47
45
  | string
48
- | import("@smithy/types").Provider<string | undefined>
49
- | undefined;
46
+ | undefined
47
+ | import("@smithy/types").Provider<string | undefined>;
50
48
  retryStrategy?:
51
49
  | import("@smithy/types").RetryStrategy
52
- | import("@smithy/types").RetryStrategyV2
53
- | undefined;
50
+ | import("@smithy/types").RetryStrategyV2;
54
51
  endpoint?:
55
52
  | ((
56
53
  | string
@@ -70,18 +67,13 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
70
67
  | undefined;
71
68
  endpointProvider: (
72
69
  params: import("./endpoint/EndpointParameters").EndpointParameters,
73
- context?:
74
- | {
75
- logger?: import("@smithy/types").Logger | undefined;
76
- }
77
- | undefined
70
+ context?: {
71
+ logger?: import("@smithy/types").Logger;
72
+ }
78
73
  ) => import("@smithy/types").EndpointV2;
79
- tls?: boolean | undefined;
80
- serviceConfiguredEndpoint?: undefined;
81
- authSchemePreference?:
82
- | string[]
83
- | import("@smithy/types").Provider<string[]>
84
- | undefined;
74
+ tls?: boolean;
75
+ serviceConfiguredEndpoint?: never;
76
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
85
77
  httpAuthSchemes:
86
78
  | import("@smithy/types").HttpAuthScheme[]
87
79
  | (
@@ -111,25 +103,18 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
111
103
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
112
104
  credentials?:
113
105
  | import("@smithy/types").AwsCredentialIdentity
114
- | import("@smithy/types").AwsCredentialIdentityProvider
115
- | undefined;
106
+ | import("@smithy/types").AwsCredentialIdentityProvider;
116
107
  signer?:
117
108
  | import("@smithy/types").RequestSigner
118
109
  | ((
119
- authScheme?: import("@smithy/types").AuthScheme | undefined
120
- ) => Promise<import("@smithy/types").RequestSigner>)
121
- | undefined;
122
- signingEscapePath?: boolean | undefined;
123
- systemClockOffset?: number | undefined;
124
- signingRegion?: string | undefined;
125
- signerConstructor?:
126
- | (new (
127
- options: import("@smithy/signature-v4").SignatureV4Init &
128
- import("@smithy/signature-v4").SignatureV4CryptoInit
129
- ) => import("@smithy/types").RequestSigner)
130
- | undefined;
131
- useGlobalEndpoint?:
132
- | boolean
133
- | import("@smithy/types").Provider<boolean>
134
- | undefined;
110
+ authScheme?: import("@smithy/types").AuthScheme
111
+ ) => Promise<import("@smithy/types").RequestSigner>);
112
+ signingEscapePath?: boolean;
113
+ systemClockOffset?: number;
114
+ signingRegion?: string;
115
+ signerConstructor?: new (
116
+ options: import("@smithy/signature-v4").SignatureV4Init &
117
+ import("@smithy/signature-v4").SignatureV4CryptoInit
118
+ ) => import("@smithy/types").RequestSigner;
119
+ useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
135
120
  };
@@ -5,15 +5,13 @@ import { STSClientConfig } from "./STSClient";
5
5
  export declare const getRuntimeConfig: (config: STSClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: (_input: string | Uint8Array) => string;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (
11
11
  params: import("./endpoint/EndpointParameters").EndpointParameters,
12
- context?:
13
- | {
14
- logger?: import("@smithy/types").Logger | undefined;
15
- }
16
- | undefined
12
+ context?: {
13
+ logger?: import("@smithy/types").Logger;
14
+ }
17
15
  ) => import("@smithy/types").EndpointV2;
18
16
  extensions: import("./runtimeExtensions").RuntimeExtension[];
19
17
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
@@ -47,5 +45,5 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
47
45
  serviceId: string;
48
46
  urlParser: import("@smithy/types").UrlParser;
49
47
  utf8Decoder: import("@smithy/types").Decoder;
50
- utf8Encoder: (input: string | Uint8Array) => string;
48
+ utf8Encoder: (input: Uint8Array | string) => string;
51
49
  };