Lambda함수를 Redshift에 접근할 수 있게 하기 위해서는 Redshift 클라스터가 있는 VPC 정보를 CDK stack에 명시해 주어야 한다. 그래서 아래 코드를 쓰기 위해 const vpcExample = ec2.Vpc.fromVpcAttributes(this, "vpcExample", { vpcId: "[vpc_id]", availabilityZones: ["[region]"], privateSubnetIds: [ "[subnet_name]", "[subnet_name]" ] }); @aws-cdk/aws-ec2를 새로 설치했더니 그 다음부터 Argument of type 'this' is not assignable to parameter of type 'Construct'라면서 에러를 뿜..