UNPKG

awscdk-construct-ad-decision-server

Version:

AWS CDK Construct to upload local files to S3 and make them publicly available via CloudFront

12 lines (11 loc) 441 B
import { Construct } from 'constructs'; import { Creative } from './Lambda'; export { Creative } from './Lambda'; export interface AdDecisionServerProps { readonly creatives: Creative[]; readonly clearanceRule?: 'LONGEST_FIRST' | 'SEQUENCIAL'; } export declare class AdDecisionServer extends Construct { readonly url: string; constructor(scope: Construct, id: string, { creatives, clearanceRule, }: AdDecisionServerProps); }