interface AuroraPostgresClusterEngineProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.AuroraPostgresClusterEngineProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#AuroraPostgresClusterEngineProps |
Java | software.amazon.awscdk.services.rds.AuroraPostgresClusterEngineProps |
Python | aws_cdk.aws_rds.AuroraPostgresClusterEngineProps |
TypeScript (source) | aws-cdk-lib » aws_rds » AuroraPostgresClusterEngineProps |
Creation properties of the Aurora PostgreSQL database cluster engine.
Used in DatabaseClusterEngine.auroraPostgres.
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,
});
Properties
| Name | Type | Description |
|---|---|---|
| version | Aurora | The version of the Aurora PostgreSQL cluster engine. |
version
Type:
Aurora
The version of the Aurora PostgreSQL cluster engine.

.NET
Go
Java
Python
TypeScript (