lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
13 lines (12 loc) • 431 B
TypeScript
import type { AwsCredentialIdentityProvider } from '@smithy/types';
import { AwsConfiguration } from './types/awsConfiguration.js';
/**
* Get AWS credentials provider
* @param awsConfiguration
* @returns
*/
declare function getCredentialsProvider(awsConfiguration: AwsConfiguration): AwsCredentialIdentityProvider;
export declare const AwsCredentials: {
getCredentialsProvider: typeof getCredentialsProvider;
};
export {};