Skip to content

Commit 72411f3

Browse files
committed
chore: add Aurora Postgres engine version 16.1
Aurora PostgreSQL 16.1 is available as of January 31, 2024. See https://docs.aws.amazon.com/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/AuroraPostgreSQL.Updates.html#AuroraPostgreSQL.Updates.20180305.161 for more information.
1 parent 712306d commit 72411f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -918,10 +918,10 @@ export class AuroraPostgresEngineVersion {
918918
public static readonly VER_15_4 = AuroraPostgresEngineVersion.of('15.4', '15', { s3Import: true, s3Export: true });
919919
/** Version "15.5". */
920920
public static readonly VER_15_5 = AuroraPostgresEngineVersion.of('15.5', '15', { s3Import: true, s3Export: true });
921-
/** Version "16.0".
922-
* Version 16.0 is available in preview environment as of November 15, 2023.
923-
*/
921+
/** Version "16.0". */
924922
public static readonly VER_16_0 = AuroraPostgresEngineVersion.of('16.0', '16', { s3Import: true, s3Export: true });
923+
/** Version "16.1". */
924+
public static readonly VER_16_1 = AuroraPostgresEngineVersion.of('16.1', '16', { s3Import: true, s3Export: true });
925925

926926
/**
927927
* Create a new AuroraPostgresEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)