Skip to content

Commit

Permalink
chore(rds): add support for PostgreSQL 14 (aws#18713)
Browse files Browse the repository at this point in the history
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*
  • Loading branch information
nikovirtala authored and TikiTDO committed Feb 21, 2022
1 parent ad8c51d commit 1189d88
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -903,6 +903,11 @@ export class PostgresEngineVersion {
/** Version "13.5". */
public static readonly VER_13_5 = PostgresEngineVersion.of('13.5', '13', { s3Import: true, s3Export: true });

/** Version "14" (only a major version, without a specific minor version). */
public static readonly VER_14 = PostgresEngineVersion.of('14', '14', { s3Import: true, s3Export: true });
/** Version "14.1". */
public static readonly VER_14_1 = PostgresEngineVersion.of('14.1', '14', { s3Import: true, s3Export: true });

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

0 comments on commit 1189d88

Please sign in to comment.