aws-cdk-lib.aws_rds.DBClusterStorageType

enum DBClusterStorageType

LanguageType name
.NETAmazon.CDK.AWS.RDS.DBClusterStorageType
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#DBClusterStorageType
Javasoftware.amazon.awscdk.services.rds.DBClusterStorageType
Pythonaws_cdk.aws_rds.DBClusterStorageType
TypeScript (source)aws-cdk-lib » aws_rds » DBClusterStorageType

The storage type to be associated with the DB cluster.

Example

declare const vpc: ec2.Vpc;
const cluster = new rds.DatabaseCluster(this, 'Database', {
  engine: rds.DatabaseClusterEngine.auroraPostgres({ version: rds.AuroraPostgresEngineVersion.VER_15_2 }),
  credentials: rds.Credentials.fromUsername('adminuser', { password: cdk.SecretValue.unsafePlainText('7959866cacc02c2d243ecfe177464fe6') }),
  instanceProps: {
    instanceType: ec2.InstanceType.of(ec2.InstanceClass.X2G, ec2.InstanceSize.XLARGE),
    vpcSubnets: { subnetType: ec2.SubnetType.PUBLIC },
    vpc,
  },
  storageType: rds.DBClusterStorageType.AURORA_IOPT1,
});

Members

NameDescription
AURORAStorage type for Aurora DB standard clusters.
AURORA_IOPT1Storage type for Aurora DB I/O-Optimized clusters.

AURORA

Storage type for Aurora DB standard clusters.


AURORA_IOPT1

Storage type for Aurora DB I/O-Optimized clusters.