UNPKG

awscdk-construct-scte-scheduler

Version:

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

18 lines (17 loc) 380 B
import type { TokenIdentity } from "./identity"; import type { Provider } from "./util"; /** * @public * * An object representing temporary or permanent AWS token. * * @deprecated Use {@link TokenIdentity} */ export interface Token extends TokenIdentity { } /** * @public * * @deprecated Use {@link TokenIdentityProvider} */ export type TokenProvider = Provider<Token>;