in lib/open-banking-brazil.ts [12:30]
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
this.networking = new Networking(this, 'Networking', {
region: this.region
})
this.apis = new Apis(this, 'Apis', {
region: this.region,
networking: this.networking
});
this.proxy = new Proxy(this, 'Proxy', {
region: this.region,
networking: this.networking,
apis: this.apis
});
}