constructor()

in eventbridge-integration-solution-aws-api-cdk/lib/ecr-registry-stack.ts [20:27]


    constructor(scope: cdk.App, id: string, props: EcrProperties) {
        super(scope, id, props);

        this.repository = new ecr.Repository(this, props.repositoryName, {
            repositoryName: props.repositoryName,
            imageScanOnPush: true
        });
    }