constructor()

in cdk/lib/partners/ACE.ts [28:38]


    constructor(scope: Construct, id: string, sourceBucket: s3.Bucket, destinationBucketName: string, mediaConvertEndpointUrl: string) {
        super(scope, id);

        this.mediaConvertEndpointURL = mediaConvertEndpointUrl;
        this.sourceBucket = sourceBucket;
        this.destinationBucket = new s3.Bucket(this, `${this.providerIdentifier}OutputBucket`, {
            bucketName: destinationBucketName
        });

        this.workflowDefinition = this.createWorkflow();
    }