def __init__()

in network/generic_network.py [0:0]


    def __init__(self, scope: core.Construct, cid: str,
                 cidr_range: str = "10.10.0.0/16", **kwargs) -> None:
        super().__init__(scope, cid, **kwargs)
        self._is_generated: bool = False
        self._subnet_configuration: [_ec2.SubnetConfiguration] = []
        self._cidr_range = cidr_range
        self._base_vpc: _ec2.Vpc
        self._vgw_propagation_subnet: _ec2.SubnetSelection
        self._has_private_subnet = False
        self._max_azs = 2
        self._vgw = False