in eventbridge-integration-solution-aws-api-cdk/lib/vpc-stack.ts [16:22]
constructor(scope: cdk.App, id: string, props: cdk.StackProps = {}) {
super(scope, id, props);
this.vpc = new ec2.Vpc(this, 'EventsVpc', {
maxAzs: 3
});
}