@aws-sdk/nested-clients 3.803.0 → 3.806.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 (31) hide show
  1. package/dist-cjs/submodules/sso-oidc/runtimeConfig.js +6 -6
  2. package/dist-cjs/submodules/sts/runtimeConfig.js +6 -6
  3. package/dist-es/submodules/sso-oidc/runtimeConfig.js +6 -6
  4. package/dist-es/submodules/sts/runtimeConfig.js +6 -6
  5. package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +1 -1
  6. package/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +1 -3
  7. package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +17 -17
  8. package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +15 -15
  9. package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +18 -18
  10. package/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +3 -3
  11. package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +1 -1
  12. package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +1 -1
  13. package/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +1 -3
  14. package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +19 -19
  15. package/dist-types/submodules/sts/runtimeConfig.d.ts +18 -18
  16. package/dist-types/submodules/sts/runtimeConfig.native.d.ts +20 -20
  17. package/dist-types/submodules/sts/runtimeConfig.shared.d.ts +4 -4
  18. package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +1 -1
  19. package/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +1 -4
  20. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +22 -32
  21. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +19 -26
  22. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +23 -33
  23. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +3 -3
  24. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +1 -4
  27. package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +25 -40
  28. package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +25 -37
  29. package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +26 -41
  30. package/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +5 -7
  31. package/package.json +21 -21
@@ -22,19 +22,19 @@ const getRuntimeConfig = (config) => {
22
22
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
23
23
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
24
24
  (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
25
- const profileConfig = { profile: config?.profile };
25
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
26
26
  return {
27
27
  ...clientSharedValues,
28
28
  ...config,
29
29
  runtime: "node",
30
30
  defaultsMode,
31
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
31
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
32
32
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
33
33
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
34
34
  (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
35
35
  maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
36
36
  region: config?.region ??
37
- (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
37
+ (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
38
38
  requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
39
39
  retryMode: config?.retryMode ??
40
40
  (0, node_config_provider_1.loadConfig)({
@@ -43,9 +43,9 @@ const getRuntimeConfig = (config) => {
43
43
  }, config),
44
44
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
45
45
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
46
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
47
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
48
- userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
46
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
47
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
48
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
49
49
  };
50
50
  };
51
51
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -23,13 +23,13 @@ const getRuntimeConfig = (config) => {
23
23
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
24
24
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
25
25
  (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
26
- const profileConfig = { profile: config?.profile };
26
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
27
27
  return {
28
28
  ...clientSharedValues,
29
29
  ...config,
30
30
  runtime: "node",
31
31
  defaultsMode,
32
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
32
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
33
33
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
34
34
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
35
35
  (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
@@ -48,7 +48,7 @@ const getRuntimeConfig = (config) => {
48
48
  ],
49
49
  maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
50
50
  region: config?.region ??
51
- (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
51
+ (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
52
52
  requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
53
53
  retryMode: config?.retryMode ??
54
54
  (0, node_config_provider_1.loadConfig)({
@@ -57,9 +57,9 @@ const getRuntimeConfig = (config) => {
57
57
  }, config),
58
58
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
59
59
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
60
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
61
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
62
- userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
60
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
61
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
62
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
63
63
  };
64
64
  };
65
65
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -18,19 +18,19 @@ export const getRuntimeConfig = (config) => {
18
18
  const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
19
19
  const clientSharedValues = getSharedRuntimeConfig(config);
20
20
  awsCheckVersion(process.version);
21
- const profileConfig = { profile: config?.profile };
21
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
22
22
  return {
23
23
  ...clientSharedValues,
24
24
  ...config,
25
25
  runtime: "node",
26
26
  defaultsMode,
27
- authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
27
+ authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
28
28
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
29
29
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
30
30
  createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
31
31
  maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
32
32
  region: config?.region ??
33
- loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
33
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
34
34
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
35
35
  retryMode: config?.retryMode ??
36
36
  loadNodeConfig({
@@ -39,8 +39,8 @@ export const getRuntimeConfig = (config) => {
39
39
  }, config),
40
40
  sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
41
41
  streamCollector: config?.streamCollector ?? streamCollector,
42
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
43
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
44
- userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
42
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
43
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
44
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
45
45
  };
46
46
  };
@@ -19,13 +19,13 @@ export const getRuntimeConfig = (config) => {
19
19
  const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
20
20
  const clientSharedValues = getSharedRuntimeConfig(config);
21
21
  awsCheckVersion(process.version);
22
- const profileConfig = { profile: config?.profile };
22
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
23
23
  return {
24
24
  ...clientSharedValues,
25
25
  ...config,
26
26
  runtime: "node",
27
27
  defaultsMode,
28
- authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
28
+ authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
29
29
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
30
30
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
31
31
  createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
@@ -44,7 +44,7 @@ export const getRuntimeConfig = (config) => {
44
44
  ],
45
45
  maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
46
46
  region: config?.region ??
47
- loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
47
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
48
48
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
49
49
  retryMode: config?.retryMode ??
50
50
  loadNodeConfig({
@@ -53,8 +53,8 @@ export const getRuntimeConfig = (config) => {
53
53
  }, config),
54
54
  sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
55
55
  streamCollector: config?.streamCollector ?? streamCollector,
56
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
57
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
58
- userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
56
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
57
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
58
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
59
59
  };
60
60
  };
@@ -23,7 +23,7 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
23
23
  }
24
24
  declare const CreateTokenCommand_base: {
25
25
  new (input: CreateTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
26
- new (__0_0: CreateTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
26
+ new (input: CreateTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -11,9 +11,7 @@ export interface ClientInputEndpointParameters {
11
11
  export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
12
  defaultSigningName: string;
13
13
  };
14
- export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
- defaultSigningName: string;
16
- };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
17
15
  export declare const commonParams: {
18
16
  readonly UseFIPS: {
19
17
  readonly type: "builtInParams";
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
10
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
11
11
  maxAttempts: number | import("@smithy/types").Provider<number>;
12
12
  region: string | import("@smithy/types").Provider<any>;
13
13
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
@@ -20,24 +20,24 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
20
20
  cacheMiddleware?: boolean | undefined;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: (_input: string | Uint8Array) => string;
23
+ base64Encoder: (_input: Uint8Array | string) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: (input: string | Uint8Array) => string;
25
+ utf8Encoder: (input: Uint8Array | string) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
- profile?: string | undefined;
28
+ profile?: string;
29
29
  logger: import("@smithy/types").Logger;
30
30
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent;
32
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
34
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;
35
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
- logger?: import("@smithy/types").Logger | undefined;
36
+ logger?: import("@smithy/types").Logger;
37
37
  }) => import("@smithy/types").EndpointV2;
38
- tls?: boolean | undefined;
39
- serviceConfiguredEndpoint?: undefined;
40
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
38
+ tls?: boolean;
39
+ serviceConfiguredEndpoint?: never;
40
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
41
41
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
42
42
  schemeId: string;
43
43
  identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
@@ -48,10 +48,10 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
48
48
  signer: import("@smithy/core").NoAuthSigner;
49
49
  })[];
50
50
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
51
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
52
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
53
- signingEscapePath?: boolean | undefined;
54
- systemClockOffset?: number | undefined;
55
- signingRegion?: string | undefined;
56
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
51
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
52
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
53
+ signingEscapePath?: boolean;
54
+ systemClockOffset?: number;
55
+ signingRegion?: string;
56
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
57
57
  };
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
14
14
  requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
@@ -22,22 +22,22 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
22
22
  cacheMiddleware?: boolean | undefined;
23
23
  urlParser: import("@smithy/types").UrlParser;
24
24
  base64Decoder: import("@smithy/types").Decoder;
25
- base64Encoder: (_input: string | Uint8Array) => string;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
26
  utf8Decoder: import("@smithy/types").Decoder;
27
- utf8Encoder: (input: string | Uint8Array) => string;
27
+ utf8Encoder: (input: Uint8Array | string) => string;
28
28
  disableHostPrefix: boolean;
29
29
  serviceId: string;
30
- profile?: string | undefined;
30
+ profile?: string;
31
31
  logger: import("@smithy/types").Logger;
32
32
  extensions: import("./runtimeExtensions").RuntimeExtension[];
33
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
34
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
+ customUserAgent?: string | import("@smithy/types").UserAgent;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
35
  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;
36
36
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
- logger?: import("@smithy/types").Logger | undefined;
37
+ logger?: import("@smithy/types").Logger;
38
38
  }) => import("@smithy/types").EndpointV2;
39
- tls?: boolean | undefined;
40
- serviceConfiguredEndpoint?: undefined;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
41
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
42
42
  schemeId: string;
43
43
  identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
@@ -48,10 +48,10 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
48
48
  signer: import("@smithy/core").NoAuthSigner;
49
49
  })[];
50
50
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
51
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
52
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
53
- signingEscapePath?: boolean | undefined;
54
- systemClockOffset?: number | undefined;
55
- signingRegion?: string | undefined;
56
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
51
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
52
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
53
+ signingEscapePath?: boolean;
54
+ systemClockOffset?: number;
55
+ signingRegion?: string;
56
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
57
57
  };
@@ -7,36 +7,36 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
- cacheMiddleware?: boolean | undefined;
10
+ cacheMiddleware?: boolean;
11
11
  urlParser: import("@smithy/types").UrlParser;
12
12
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
13
  streamCollector: import("@smithy/types").StreamCollector;
14
14
  base64Decoder: import("@smithy/types").Decoder;
15
- base64Encoder: (_input: string | Uint8Array) => string;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
16
  utf8Decoder: import("@smithy/types").Decoder;
17
- utf8Encoder: (input: string | Uint8Array) => string;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
18
  disableHostPrefix: boolean;
19
19
  serviceId: string;
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
- profile?: string | undefined;
24
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
26
26
  retryMode: string | import("@smithy/types").Provider<string>;
27
27
  logger: import("@smithy/types").Logger;
28
28
  extensions: import("./runtimeExtensions").RuntimeExtension[];
29
29
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
30
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
30
+ customUserAgent?: string | import("@smithy/types").UserAgent;
31
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
32
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
33
33
  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;
34
34
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
- logger?: import("@smithy/types").Logger | undefined;
35
+ logger?: import("@smithy/types").Logger;
36
36
  }) => import("@smithy/types").EndpointV2;
37
- tls?: boolean | undefined;
38
- serviceConfiguredEndpoint?: undefined;
39
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
37
+ tls?: boolean;
38
+ serviceConfiguredEndpoint?: never;
39
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
40
40
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
41
41
  schemeId: string;
42
42
  identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
@@ -47,10 +47,10 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
47
47
  signer: import("@smithy/core").NoAuthSigner;
48
48
  })[];
49
49
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
50
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
51
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
52
- signingEscapePath?: boolean | undefined;
53
- systemClockOffset?: number | undefined;
54
- signingRegion?: string | undefined;
55
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
50
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
+ signingEscapePath?: boolean;
53
+ systemClockOffset?: number;
54
+ signingRegion?: string;
55
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
56
  };
@@ -8,10 +8,10 @@ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
8
8
  export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
9
9
  apiVersion: string;
10
10
  base64Decoder: import("@smithy/types").Decoder;
11
- base64Encoder: (_input: string | Uint8Array) => string;
11
+ base64Encoder: (_input: Uint8Array | string) => string;
12
12
  disableHostPrefix: boolean;
13
13
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
14
- logger?: import("@smithy/types").Logger | undefined;
14
+ logger?: import("@smithy/types").Logger;
15
15
  }) => import("@smithy/types").EndpointV2;
16
16
  extensions: import("./runtimeExtensions").RuntimeExtension[];
17
17
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
@@ -28,5 +28,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
28
28
  serviceId: string;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  utf8Decoder: import("@smithy/types").Decoder;
31
- utf8Encoder: (input: string | Uint8Array) => string;
31
+ utf8Encoder: (input: Uint8Array | string) => string;
32
32
  };
@@ -23,7 +23,7 @@ export interface AssumeRoleCommandOutput extends AssumeRoleResponse, __MetadataB
23
23
  }
24
24
  declare const AssumeRoleCommand_base: {
25
25
  new (input: AssumeRoleCommandInput): import("@smithy/smithy-client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: AssumeRoleCommandInput): import("@smithy/smithy-client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AssumeRoleCommandInput): import("@smithy/smithy-client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -23,7 +23,7 @@ export interface AssumeRoleWithWebIdentityCommandOutput extends AssumeRoleWithWe
23
23
  }
24
24
  declare const AssumeRoleWithWebIdentityCommand_base: {
25
25
  new (input: AssumeRoleWithWebIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: AssumeRoleWithWebIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AssumeRoleWithWebIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -12,9 +12,7 @@ export interface ClientInputEndpointParameters {
12
12
  export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
13
13
  defaultSigningName: string;
14
14
  };
15
- export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
16
- defaultSigningName: string;
17
- };
15
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
18
16
  export declare const commonParams: {
19
17
  readonly UseGlobalEndpoint: {
20
18
  readonly type: "builtInParams";
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
@@ -21,24 +21,24 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
21
21
  cacheMiddleware?: boolean | undefined;
22
22
  urlParser: import("@smithy/types").UrlParser;
23
23
  base64Decoder: import("@smithy/types").Decoder;
24
- base64Encoder: (_input: string | Uint8Array) => string;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
25
  utf8Decoder: import("@smithy/types").Decoder;
26
- utf8Encoder: (input: string | Uint8Array) => string;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
27
  disableHostPrefix: boolean;
28
28
  serviceId: string;
29
- profile?: string | undefined;
29
+ profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
34
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
35
  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;
36
36
  endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
- logger?: import("@smithy/types").Logger | undefined;
38
- } | undefined) => import("@smithy/types").EndpointV2;
39
- tls?: boolean | undefined;
40
- serviceConfiguredEndpoint?: undefined;
41
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
42
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
43
43
  schemeId: string;
44
44
  identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
@@ -49,11 +49,11 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
49
49
  signer: import("@smithy/core").NoAuthSigner;
50
50
  })[];
51
51
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
52
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
53
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
54
- signingEscapePath?: boolean | undefined;
55
- systemClockOffset?: number | undefined;
56
- signingRegion?: string | undefined;
57
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
58
- useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean> | undefined;
52
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
53
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
54
+ signingEscapePath?: boolean;
55
+ systemClockOffset?: number;
56
+ signingRegion?: string;
57
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
58
+ useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
59
59
  };
@@ -10,7 +10,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
10
10
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
11
11
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
12
12
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
13
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
14
14
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | {
15
15
  schemeId: string;
16
16
  identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>);
@@ -29,29 +29,29 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
29
29
  cacheMiddleware?: boolean | undefined;
30
30
  urlParser: import("@smithy/types").UrlParser;
31
31
  base64Decoder: import("@smithy/types").Decoder;
32
- base64Encoder: (_input: string | Uint8Array) => string;
32
+ base64Encoder: (_input: Uint8Array | string) => string;
33
33
  utf8Decoder: import("@smithy/types").Decoder;
34
- utf8Encoder: (input: string | Uint8Array) => string;
34
+ utf8Encoder: (input: Uint8Array | string) => string;
35
35
  disableHostPrefix: boolean;
36
36
  serviceId: string;
37
- profile?: string | undefined;
38
- credentialDefaultProvider?: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | undefined;
37
+ profile?: string;
38
+ credentialDefaultProvider?: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
42
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
41
+ customUserAgent?: string | import("@smithy/types").UserAgent;
42
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
43
43
  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;
44
44
  endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
45
- logger?: import("@smithy/types").Logger | undefined;
46
- } | undefined) => import("@smithy/types").EndpointV2;
47
- tls?: boolean | undefined;
48
- serviceConfiguredEndpoint?: undefined;
45
+ logger?: import("@smithy/types").Logger;
46
+ }) => import("@smithy/types").EndpointV2;
47
+ tls?: boolean;
48
+ serviceConfiguredEndpoint?: never;
49
49
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
50
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
51
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
52
- signingEscapePath?: boolean | undefined;
53
- systemClockOffset?: number | undefined;
54
- signingRegion?: string | undefined;
55
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
56
- useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean> | undefined;
50
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
+ signingEscapePath?: boolean;
53
+ systemClockOffset?: number;
54
+ signingRegion?: string;
55
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
57
57
  };