Skip to content
Merged
Show file tree
Hide file tree
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
17 changes: 14 additions & 3 deletions packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1095,18 +1095,29 @@ export class AuroraPostgresEngineVersion {
public static readonly VER_16_4 = AuroraPostgresEngineVersion.of('16.4', '16', { s3Import: true, s3Export: true });
/** Version "16.4 limitless" */
public static readonly VER_16_4_LIMITLESS = AuroraPostgresEngineVersion.of('16.4-limitless', '16', { s3Import: true, s3Export: true });
/** Version "16.5". */
/**
* Version "16.5"
* @deprecated Version 16.5 is no longer supported by Amazon RDS.
*/
public static readonly VER_16_5 = AuroraPostgresEngineVersion.of('16.5', '16', { s3Import: true, s3Export: true });
/** Version "16.6". */
public static readonly VER_16_6 = AuroraPostgresEngineVersion.of('16.6', '16', { s3Import: true, s3Export: true });
/** Version "16.6 limitless" */
public static readonly VER_16_6_LIMITLESS = AuroraPostgresEngineVersion.of('16.6-limitless', '16', { s3Import: true, s3Export: true });
/** Version "16.8". */
public static readonly VER_16_8 = AuroraPostgresEngineVersion.of('16.8', '16', { s3Import: true, s3Export: true });
/** Version "17.1". */
/**
* Version "17.1"
* @deprecated Version 17.1 is no longer supported by Amazon RDS.
*/
public static readonly VER_17_1 = AuroraPostgresEngineVersion.of('17.1', '17', { s3Import: true, s3Export: true });
/** Version "17.2". */
/**
* Version "17.2"
* @deprecated Version 17.2 is no longer supported by Amazon RDS.
*/
public static readonly VER_17_2 = AuroraPostgresEngineVersion.of('17.2', '17', { s3Import: true, s3Export: true });
/** Version "17.4". */
public static readonly VER_17_4 = AuroraPostgresEngineVersion.of('17.4', '17', { s3Import: true, s3Export: true });

/**
* Create a new AuroraPostgresEngineVersion with an arbitrary version.
Expand Down
4 changes: 4 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 @@ -973,10 +973,14 @@ export class MysqlEngineVersion {
public static readonly VER_8_0_40 = MysqlEngineVersion.of('8.0.40', '8.0');
/** Version "8.0.41". */
public static readonly VER_8_0_41 = MysqlEngineVersion.of('8.0.41', '8.0');
/** Version "8.0.42". */
public static readonly VER_8_0_42 = MysqlEngineVersion.of('8.0.42', '8.0');
/** Version "8.4.3". */
public static readonly VER_8_4_3 = MysqlEngineVersion.of('8.4.3', '8.4');
/** Version "8.4.4". */
public static readonly VER_8_4_4 = MysqlEngineVersion.of('8.4.4', '8.4');
/** Version "8.4.5". */
public static readonly VER_8_4_5 = MysqlEngineVersion.of('8.4.5', '8.4');

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