UNPKG

awscdk-construct-scte-scheduler

Version:

AWS CDK Construct for scheduling SCTE-35 events using the MediaLive schedule API

18 lines (17 loc) 605 B
import type { CredentialProviderOptions, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types"; import type { FromWebTokenInit } from "./fromWebToken"; /** * @public */ export interface FromTokenFileInit extends Partial<Omit<FromWebTokenInit, "webIdentityToken">>, CredentialProviderOptions { /** * 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) => RuntimeConfigAwsCredentialIdentityProvider;