Skip to content

Commit 846c26a

Browse files
authored
chore(rds): support for aurora mysql 3.04.1 (#28002)
This PR adds new versions for Aurora MySQL. - 3.04.1 - https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.3041.html ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent e789adc commit 846c26a

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
@@ -542,6 +542,8 @@ export class AuroraMysqlEngineVersion {
542542
public static readonly VER_3_03_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.03.1');
543543
/** Version "8.0.mysql_aurora.3.04.0". */
544544
public static readonly VER_3_04_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.04.0');
545+
/** Version "8.0.mysql_aurora.3.04.1". */
546+
public static readonly VER_3_04_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.04.1');
545547
/** Version "8.0.mysql_aurora.3.05.0". */
546548
public static readonly VER_3_05_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.0');
547549

0 commit comments

Comments
 (0)