lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
8 lines (7 loc) • 371 B
TypeScript
import type { RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
import type { FromLoginCredentialsInit } from "./types";
/**
* Creates a credential provider that sources credentials from aws login cached tokens
* @internal
*/
export declare const fromLoginCredentials: (init?: FromLoginCredentialsInit) => RuntimeConfigAwsCredentialIdentityProvider;