def __init__()

in cmk/generic_cmk.py [0:0]


    def __init__(self, scope: core.Construct, cid: str, **kwargs) -> None:
        super().__init__(scope, id=cid, **kwargs)

        key_name = "SwiftConnectivityCMK"
        self._cmk = _kms.Key(self, key_name,
                             alias=key_name,
                             description="Swift Connectivity CMK for use for all resources",
                             enabled=True,
                             enable_key_rotation=True,
                             removal_policy=core.RemovalPolicy.DESTROY
                             )