Skip to content

Commit

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

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
neilkuan authored Oct 7, 2020
1 parent 4f46341 commit 8b9a5cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/@aws-cdk/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,8 @@ export class MysqlEngineVersion {
public static readonly VER_8_0_17 = MysqlEngineVersion.of('8.0.17', '8.0');
/** Version "8.0.19". */
public static readonly VER_8_0_19 = MysqlEngineVersion.of('8.0.19', '8.0');
/** Version "8.0.20 ". */
public static readonly VER_8_0_20 = MysqlEngineVersion.of('8.0.20', '8.0');

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

0 comments on commit 8b9a5cf

Please sign in to comment.