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.

13 lines (12 loc) 545 B
import type { SsoProfile } from "@aws-sdk/credential-provider-sso"; import type { IniSection, Profile } from "@smithy/types"; import type { FromIniInit } from "./fromIni"; /** * @internal */ export declare const resolveSsoCredentials: (profile: string, profileData: IniSection, options?: FromIniInit) => Promise<import("@aws-sdk/types").AttributedAwsCredentialIdentity>; /** * @internal * duplicated from \@aws-sdk/credential-provider-sso to defer import. */ export declare const isSsoProfile: (arg: Profile) => arg is Partial<SsoProfile>;