Skip to content

Commit 203cd9a

Browse files
authored
chore(rds): add support for PostgreSQL 14 (#18713)
Amazon RDS for PostgreSQL supports now a major version 14. https://aws.amazon.com/about-aws/whats-new/2022/01/amazon-rds-postgresql-14-outposts/ ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 9f6e10e commit 203cd9a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/@aws-cdk/aws-rds/lib/instance-engine.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -903,6 +903,11 @@ export class PostgresEngineVersion {
903903
/** Version "13.5". */
904904
public static readonly VER_13_5 = PostgresEngineVersion.of('13.5', '13', { s3Import: true, s3Export: true });
905905

906+
/** Version "14" (only a major version, without a specific minor version). */
907+
public static readonly VER_14 = PostgresEngineVersion.of('14', '14', { s3Import: true, s3Export: true });
908+
/** Version "14.1". */
909+
public static readonly VER_14_1 = PostgresEngineVersion.of('14.1', '14', { s3Import: true, s3Export: true });
910+
906911
/**
907912
* Create a new PostgresEngineVersion with an arbitrary version.
908913
*

0 commit comments

Comments
 (0)