UNPKG

awscdk-mediatailor-cloudfront-construct

Version:

CDK Construct to associate MediaTailor config with CloudFront distribution

14 lines (13 loc) 614 B
import { CfnPlaybackConfiguration } from 'aws-cdk-lib/aws-mediatailor'; import { Construct } from 'constructs'; export interface MediaTailorProps { readonly videoContentSourceUrl: string; readonly adDecisionServerUrl: string; readonly slateAdUrl?: string; readonly configurationAliases?: object; readonly prerollAdUrl?: string; } export declare class MediaTailor extends Construct { readonly config: CfnPlaybackConfiguration; constructor(scope: Construct, id: string, { videoContentSourceUrl, adDecisionServerUrl, slateAdUrl, configurationAliases, prerollAdUrl, }: MediaTailorProps); }