aws-cdk-lib.aws_rds.DBClusterStorageType
enum DBClusterStorageType
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.DBClusterStorageType |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#DBClusterStorageType |
![]() | software.amazon.awscdk.services.rds.DBClusterStorageType |
![]() | aws_cdk.aws_rds.DBClusterStorageType |
![]() | 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
Name | Description |
---|---|
AURORA | Storage type for Aurora DB standard clusters. |
AURORA_IOPT1 | Storage 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.