Skip to content

Commit

Permalink
chore(rds): add additional aurora mysql engine versions (#10477)
Browse files Browse the repository at this point in the history
chore(rds): add additional aurora mysql engine versions

Closes: #10476 

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
pahud committed Sep 22, 2020
1 parent bf3cc21 commit 2e93863
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/@aws-cdk/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,10 @@ export class AuroraMysqlEngineVersion {
public static readonly VER_2_08_0 = AuroraMysqlEngineVersion.builtIn_5_7('2.08.0');
/** Version "5.7.mysql_aurora.2.08.1". */
public static readonly VER_2_08_1 = AuroraMysqlEngineVersion.builtIn_5_7('2.08.1');
/** Version "5.7.mysql_aurora.2.08.2". */
public static readonly VER_2_08_2 = AuroraMysqlEngineVersion.builtIn_5_7('2.08.2');
/** Version "5.7.mysql_aurora.2.09.0". */
public static readonly VER_2_09_0 = AuroraMysqlEngineVersion.builtIn_5_7('2.09.0');

/**
* Create a new AuroraMysqlEngineVersion with an arbitrary version.
Expand Down

0 comments on commit 2e93863

Please sign in to comment.