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: SecretValue.unsafePlainText('7959866cacc02c2d243ecfe177464fe6') }),
writer: rds.ClusterInstance.provisioned('writer', {
publiclyAccessible: false,
}),
readers: [
rds.ClusterInstance.provisioned('reader')
],
storageType: rds.DBClusterStorageType.AURORA_IOPT1,
vpcSubnets: {
subnetType: ec2.SubnetType.PRIVATE_WITH_EGRESS,
},
vpc,
});
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.