open-next-cdk
Version:
Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK
15 lines (14 loc) • 433 B
TypeScript
import { SourceProfileInit } from "@smithy/shared-ini-file-loader";
import { AwsCredentialIdentityProvider } from "@smithy/types";
/**
* @internal
*/
export interface FromProcessInit extends SourceProfileInit {
}
/**
* @internal
*
* Creates a credential provider that will read from a credential_process specified
* in ini files.
*/
export declare const fromProcess: (init?: FromProcessInit) => AwsCredentialIdentityProvider;