Skip to content

Commit 1edf925

Browse files
committed
Aurora PostgreSQL add version 17.4
1 parent c75dae5 commit 1edf925

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,18 +1095,29 @@ export class AuroraPostgresEngineVersion {
10951095
public static readonly VER_16_4 = AuroraPostgresEngineVersion.of('16.4', '16', { s3Import: true, s3Export: true });
10961096
/** Version "16.4 limitless" */
10971097
public static readonly VER_16_4_LIMITLESS = AuroraPostgresEngineVersion.of('16.4-limitless', '16', { s3Import: true, s3Export: true });
1098-
/** Version "16.5". */
1098+
/**
1099+
* Version "16.5"
1100+
* @deprecated Version 16.5 is no longer supported by Amazon RDS.
1101+
*/
10991102
public static readonly VER_16_5 = AuroraPostgresEngineVersion.of('16.5', '16', { s3Import: true, s3Export: true });
11001103
/** Version "16.6". */
11011104
public static readonly VER_16_6 = AuroraPostgresEngineVersion.of('16.6', '16', { s3Import: true, s3Export: true });
11021105
/** Version "16.6 limitless" */
11031106
public static readonly VER_16_6_LIMITLESS = AuroraPostgresEngineVersion.of('16.6-limitless', '16', { s3Import: true, s3Export: true });
11041107
/** Version "16.8". */
11051108
public static readonly VER_16_8 = AuroraPostgresEngineVersion.of('16.8', '16', { s3Import: true, s3Export: true });
1106-
/** Version "17.1". */
1109+
/**
1110+
* Version "17.1"
1111+
* @deprecated Version 17.1 is no longer supported by Amazon RDS.
1112+
*/
11071113
public static readonly VER_17_1 = AuroraPostgresEngineVersion.of('17.1', '17', { s3Import: true, s3Export: true });
1108-
/** Version "17.2". */
1114+
/**
1115+
* Version "17.2"
1116+
* @deprecated Version 17.2 is no longer supported by Amazon RDS.
1117+
*/
11091118
public static readonly VER_17_2 = AuroraPostgresEngineVersion.of('17.2', '17', { s3Import: true, s3Export: true });
1119+
/** Version "17.4". */
1120+
public static readonly VER_17_4 = AuroraPostgresEngineVersion.of('17.4', '17', { s3Import: true, s3Export: true });
11101121

11111122
/**
11121123
* Create a new AuroraPostgresEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)