Skip to content

Commit

Permalink
chore(rds): add additional AuroraPostgresEngineVersion 11.9 (aws#12267)
Browse files Browse the repository at this point in the history
closes aws#12266

This change adds support for `AuroraPostgresEngineVersion` version 11.9 used for db.r6g instance types Aurora.

https://aws.amazon.com/about-aws/whats-new/2020/12/introducing-amazon-aurora-r6g-instance-types-powered-by-aws-graviton-2-processors-in-preview/

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
1davidmichael authored Dec 29, 2020
1 parent 245ee6a commit 534199b
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 @@ -442,6 +442,8 @@ export class AuroraPostgresEngineVersion {
public static readonly VER_11_7 = AuroraPostgresEngineVersion.of('11.7', '11', { s3Import: true, s3Export: true });
/** Version "11.8". */
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 });

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

0 comments on commit 534199b

Please sign in to comment.