Skip to content

Commit 986db38

Browse files
authored
feat(rds): support aurora mysql 3.05.1 (#28370)
This PR supports Aurora MySQL 3.05.1. https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.3051.html ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent de0d77b commit 986db38

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
@@ -546,6 +546,8 @@ export class AuroraMysqlEngineVersion {
546546
public static readonly VER_3_04_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.04.1');
547547
/** Version "8.0.mysql_aurora.3.05.0". */
548548
public static readonly VER_3_05_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.0');
549+
/** Version "8.0.mysql_aurora.3.05.1". */
550+
public static readonly VER_3_05_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.1');
549551

550552
/**
551553
* Create a new AuroraMysqlEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)