UNPKG

cdk-ssm-secure-iam-access-key

Version:

Creates an IAM Access Key for a provided IAM User and stores the result in an SSM SecureString Parameter

39 lines (38 loc) 2.52 kB
import { SSOClientConfig } from "./SSOClient"; /** * @internal */ export declare const getRuntimeConfig: (config: SSOClientConfig) => { runtime: string; sha256: import("@smithy/types").HashConstructor; requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & { updateHttpClientConfig(key: never, value: never): void; httpHandlerConfigs(): {}; }) | import("@smithy/fetch-http-handler").FetchHttpHandler; apiVersion: string; urlParser: import("@smithy/types").UrlParser; bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; streamCollector: import("@smithy/types").StreamCollector; base64Decoder: import("@smithy/types").Decoder; base64Encoder: import("@smithy/types").Encoder; utf8Decoder: import("@smithy/types").Decoder; utf8Encoder: import("@smithy/types").Encoder; disableHostPrefix: boolean; serviceId: string; useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>; useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>; region: string | import("@smithy/types").Provider<any>; defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>; maxAttempts: number | import("@smithy/types").Provider<number>; retryMode: string | import("@smithy/types").Provider<string>; logger: import("@smithy/types").Logger; extensions: import("./runtimeExtensions").RuntimeExtension[]; defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>; 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; endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: { logger?: import("@smithy/types").Logger | undefined; }) => import("@smithy/types").EndpointV2; tls?: boolean | undefined; retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; customUserAgent?: string | import("@smithy/types").UserAgent | undefined; };