How to use the @aws-cdk/aws-rds.CfnDBSubnetGroup function in @aws-cdk/aws-rds

To help you get started, we’ve selected a few @aws-cdk/aws-rds examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github customink / activerecord-aurora-serverless-adapter / test / aurora-serverless / lib / aurora-serverless-stack.ts View on Github external
const vpc = new Vpc(this, "Vpc", {
      cidr: "10.0.0.0/16",
      natGateways: 0,
      subnetConfiguration: [
        { name: "aasa_isolated", subnetType: SubnetType.ISOLATED }
      ]
    });
    const subnetIds: string[] = [];
    vpc.isolatedSubnets.forEach(subnet => {
      subnetIds.push(subnet.subnetId);
    });

    // SUBNET GROUP

    const dbSubnetGroup: CfnDBSubnetGroup = new CfnDBSubnetGroup(
      this,
      "AuroraSubnetGroup",
      {
        dbSubnetGroupDescription: "Subnet group to AASA Aurora",
        dbSubnetGroupName: "aasa-subnet-group",
        subnetIds
      }
    );

    // RDS PARAMETER GROUP

    const dbParamGroup = new CfnDBClusterParameterGroup(
      this,
      "ParameterGroup",
      {
        family: "aurora5.6",

@aws-cdk/aws-rds

The CDK Construct Library for AWS::RDS

Apache-2.0
Latest version published 10 months ago

Package Health Score

67 / 100
Full package analysis