UNPKG

@aws-sdk/client-sts

Version:

AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native

39 lines (38 loc) 1.89 kB
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import type { IdentityProviderConfig } from "@smithy/types"; import type { STSClientConfig } from "./STSClient"; /** * @internal */ export declare const getRuntimeConfig: (config: STSClientConfig) => { apiVersion: string; base64Decoder: import("@smithy/types").Decoder; base64Encoder: (_input: Uint8Array | string) => string; disableHostPrefix: boolean; endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: { logger?: import("@smithy/types").Logger; }) => import("@smithy/types").EndpointV2; extensions: import("./runtimeExtensions").RuntimeExtension[]; httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider; httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({ schemeId: string; identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined; signer: AwsSdkSigV4Signer; } | { schemeId: string; identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>); signer: NoAuthSigner; })[]; logger: import("@smithy/types").Logger; protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsQueryProtocol; protocolSettings: { [setting: string]: unknown; defaultNamespace?: string; }; serviceId: string; urlParser: import("@smithy/types").UrlParser; utf8Decoder: import("@smithy/types").Decoder; utf8Encoder: (input: Uint8Array | string) => string; };