UNPKG

open-next-cdk

Version:

Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK

18 lines (17 loc) 516 B
import { AwsCredentialIdentityProvider } from "@smithy/types"; import { FromWebTokenInit } from "./fromWebToken"; /** * @internal */ export interface FromTokenFileInit extends Partial<Omit<FromWebTokenInit, "webIdentityToken">> { /** * File location of where the `OIDC` token is stored. */ webIdentityTokenFile?: string; } /** * @internal * * Represents OIDC credentials from a file on disk. */ export declare const fromTokenFile: (init?: FromTokenFileInit) => AwsCredentialIdentityProvider;