UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

33 lines (32 loc) 1.57 kB
import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoAuthSigner } from "@smithy/core"; import { IdentityProviderConfig } from "@smithy/types"; import { SSOClientConfig } from "./SSOClient"; /** * @internal */ export declare const getRuntimeConfig: (config: SSOClientConfig) => { apiVersion: string; base64Decoder: import("@smithy/types").Decoder; base64Encoder: (_input: string | Uint8Array) => string; disableHostPrefix: boolean; endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: { logger?: import("@smithy/types").Logger | undefined; }) => import("@smithy/types").EndpointV2; extensions: import("./runtimeExtensions").RuntimeExtension[]; httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider; 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; serviceId: string; urlParser: import("@smithy/types").UrlParser; utf8Decoder: import("@smithy/types").Decoder; utf8Encoder: (input: string | Uint8Array) => string; };