Skip to content

Commit

Permalink
chore(rds): add AuroraPostgresEngineVersion 12.4 (#12888)
Browse files Browse the repository at this point in the history
A new version of Aurora Postgres was recently released https://aws.amazon.com/about-aws/whats-new/2021/01/amazon-aurora-supports-postgresql-12/

![Screen Shot 2021-02-05 at 9 15 58 AM](https://user-images.githubusercontent.com/5084492/107052265-0e239b00-6793-11eb-964c-bd69e64ff3b4.png)


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
TLadd committed Feb 10, 2021
1 parent d7b06d0 commit 70bb0bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/@aws-cdk/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,8 @@ export class AuroraPostgresEngineVersion {
public static readonly VER_11_8 = AuroraPostgresEngineVersion.of('11.8', '11', { s3Import: true, s3Export: true });
/** Version "11.9". */
public static readonly VER_11_9 = AuroraPostgresEngineVersion.of('11.9', '11', { s3Import: true, s3Export: true });
/** Version "12.4". */
public static readonly VER_12_4 = AuroraPostgresEngineVersion.of('12.4', '12', { s3Import: true, s3Export: true });

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

0 comments on commit 70bb0bf

Please sign in to comment.