def __init__()

in security/generic_security.py [0:0]


    def __init__(self, scope: core.Construct, cid: str, vpc: _ec2.Vpc, **kwargs) -> None:
        super().__init__(scope, id=cid, **kwargs)
        self._vpc: _ec2.Vpc = vpc
        self._security_groups: {str, _ec2.SecurityGroup} = {}
        self._nacls: {str, _ec2.NetworkAcl} = {}
        self._gateway_endpoints: {str, _ec2.GatewayVpcEndpoint} = {}
        self._instance_role: {str, _iam.Role} = {}