redshift_benchmark/lib/cdkRedshiftStack.py [71:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            self.demo_cluster = redshift.CfnCluster(self,
                "redshiftDemoCluster",
                cluster_type=cluster_type,
                cluster_identifier = "benchmark",
                db_name="dev",
                master_username = rs_username.value_as_string,
                port=5439,
                publicly_accessible=True,
                master_user_password=rs_password.value_as_string,
                iam_roles=[self._rs_cluster_role.role_arn],
                node_type=f"{rs_instance_type.value_as_string}",
                cluster_subnet_group_name=demo_cluster_subnet_group.ref,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



redshift_benchmark/lib/cdkRedshiftStack.py [87:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            self.demo_cluster = redshift.CfnCluster(self,
                "redshiftDemoCluster",
                cluster_type=cluster_type,
                cluster_identifier = "benchmark",
                db_name="dev",
                master_username = rs_username.value_as_string,
                port=5439,
                publicly_accessible=True,
                master_user_password=rs_password.value_as_string,
                iam_roles=[self._rs_cluster_role.role_arn],
                node_type=f"{rs_instance_type.value_as_string}",
                cluster_subnet_group_name=demo_cluster_subnet_group.ref,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



