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.
16 lines (15 loc) • 525 B
TypeScript
import type { CredentialProviderOptions } from "@aws-sdk/types";
import { SourceProfileInit } from "@smithy/shared-ini-file-loader";
import { AwsCredentialIdentityProvider } from "@smithy/types";
/**
* @internal
*/
export interface FromProcessInit extends SourceProfileInit, CredentialProviderOptions {
}
/**
* @internal
*
* Creates a credential provider that will read from a credential_process specified
* in ini files.
*/
export declare const fromProcess: (init?: FromProcessInit) => AwsCredentialIdentityProvider;