redshift_poc_automation/stacks/jmeter_stack.py [11:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(
            self,
            scope: core.Construct, id: str,
            cluster,
            other_config: dict,
            redshift_config: dict,
            vpc,
            stack_log_level: str,
            vpc_config: dict,
            **kwargs

    ) -> None:
        super().__init__(scope, id, **kwargs)

        keyname = other_config.get('key_name')
        onprem_cidr = vpc_config.get('on_prem_cidr')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



redshift_poc_automation/stacks/sct_stack.py [11:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(
            self,
            scope: core.Construct, id: str,
            cluster,
            other_config: dict,
            redshift_config: dict,
            vpc,
            stack_log_level: str,
            vpc_config: dict,
            **kwargs

    ) -> None:
        super().__init__(scope, id, **kwargs)

        keyname = other_config.get('key_name')
        onprem_cidr = vpc_config.get('on_prem_cidr')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



