Skip to content

Commit da0b82c

Browse files
authored
feat(rds): support Aurora MySQL 3.05.2 (#29166)
This PR adds support for Aurora MySQL 3.05.2. https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.3052.html ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c979d6b commit da0b82c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts

+2
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,8 @@ export class AuroraMysqlEngineVersion {
548548
public static readonly VER_3_05_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.0');
549549
/** Version "8.0.mysql_aurora.3.05.1". */
550550
public static readonly VER_3_05_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.1');
551+
/** Version "8.0.mysql_aurora.3.05.2". */
552+
public static readonly VER_3_05_2 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.2');
551553

552554
/**
553555
* Create a new AuroraMysqlEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)