lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
13 lines (12 loc) • 531 B
TypeScript
import type { SsoProfile } from "@aws-sdk/credential-provider-sso";
import type { CredentialProviderOptions } from "@aws-sdk/types";
import type { Profile } from "@smithy/types";
/**
* @internal
*/
export declare const resolveSsoCredentials: (profile: string, options?: CredentialProviderOptions) => Promise<import("@aws-sdk/types").AwsCredentialIdentity>;
/**
* @internal
* duplicated from \@aws-sdk/credential-provider-sso to defer import.
*/
export declare const isSsoProfile: (arg: Profile) => arg is Partial<SsoProfile>;