Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,11 @@ export class MysqlEngineVersion {

/** Version "5.7" (only a major version, without a specific minor version). */
public static readonly VER_5_7 = MysqlEngineVersion.of('5.7', '5.7');
/**
* Version "5.7.12"
* @deprecated MySQL 5.7.12 is no longer supported by Amazon RDS.
*/
public static readonly VER_5_7_12 = MysqlEngineVersion.of('5.7.12', '5.7');
/**
* Version "5.7.16"
* @deprecated MySQL 5.7.16 is no longer supported by Amazon RDS.
Expand Down
Loading