interface AuroraClusterEngineProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.AuroraClusterEngineProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#AuroraClusterEngineProps |
Java | software.amazon.awscdk.services.rds.AuroraClusterEngineProps |
Python | aws_cdk.aws_rds.AuroraClusterEngineProps |
TypeScript (source) | aws-cdk-lib » aws_rds » AuroraClusterEngineProps |
⚠️ Deprecated: use AuroraMysqlClusterEngineProps instead
Creation properties of the plain Aurora database cluster engine.
Used in DatabaseClusterEngine.aurora.
Example
declare const vpc: ec2.Vpc;
new rds.DatabaseClusterFromSnapshot(this, 'Database', {
engine: rds.DatabaseClusterEngine.aurora({ version: rds.AuroraEngineVersion.VER_1_22_2 }),
writer: rds.ClusterInstance.provisioned('writer'),
vpc,
snapshotIdentifier: 'mySnapshot',
});
Properties
| Name | Type | Description |
|---|---|---|
| version | Aurora | The version of the Aurora cluster engine. |
version
⚠️ Deprecated: use AuroraMysqlClusterEngineProps instead
Type:
Aurora
The version of the Aurora cluster engine.

.NET
Go
Java
Python
TypeScript (