def __init__()

in cdk_constructs/lambda_construct.py [0:0]


    def __init__(
        self,
        scope: core.Construct,
        id: str,
        code: str,
        handler: str,
        timeout: int,
        memory_size: int,
        vpc_id:str=None,
        security_group_ids:List[str]=None,
        managed_policy_arns:List[str]=None,
        cross_account_s3_arns:List[str]=None,
        event_sqs_queue_arn:str=None,
        kms_key_arns:List[str]=None,
        ddb_table_arns:List[str]=None,
        environment=None,
        **kwargs