interface AuroraMysqlClusterEngineProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.RDS.AuroraMysqlClusterEngineProps | 
|  Java | software.amazon.awscdk.services.rds.AuroraMysqlClusterEngineProps | 
|  Python | aws_cdk.aws_rds.AuroraMysqlClusterEngineProps | 
|  TypeScript (source) | @aws-cdk/aws-rds»AuroraMysqlClusterEngineProps | 
Creation properties of the Aurora MySQL database cluster engine.
Used in {@link DatabaseClusterEngine.auroraMysql}.
Example
declare const vpc: ec2.Vpc;
const cluster = new rds.DatabaseCluster(this, 'Database', {
  engine: rds.DatabaseClusterEngine.auroraMysql({ version: rds.AuroraMysqlEngineVersion.VER_2_08_1 }),
  credentials: rds.Credentials.fromGeneratedSecret('clusteradmin'), // Optional - will default to 'admin' username and generated password
  instanceProps: {
    // optional , defaults to t3.medium
    instanceType: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE2, ec2.InstanceSize.SMALL),
    vpcSubnets: {
      subnetType: ec2.SubnetType.PRIVATE_WITH_NAT,
    },
    vpc,
  },
});
Properties
| Name | Type | Description | 
|---|---|---|
| version | Aurora | The version of the Aurora MySQL cluster engine. | 
version
Type:
Aurora
The version of the Aurora MySQL cluster engine.
