Skip to content

Commit 2151a0e

Browse files
authored
feat(rds): add missing aurora postgres versions (#20830)
Add new Postgres versions which are already available in AWS. ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent b368a31 commit 2151a0e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,8 @@ export class AuroraPostgresEngineVersion {
501501
public static readonly VER_10_19 = AuroraPostgresEngineVersion.of('10.19', '10', { s3Import: true, s3Export: true });
502502
/** Version "10.20". */
503503
public static readonly VER_10_20 = AuroraPostgresEngineVersion.of('10.20', '10', { s3Import: true, s3Export: true });
504+
/** Version "10.21". */
505+
public static readonly VER_10_21 = AuroraPostgresEngineVersion.of('10.21', '10', { s3Import: true, s3Export: true });
504506
/** Version "11.4". */
505507
public static readonly VER_11_4 = AuroraPostgresEngineVersion.of('11.4', '11', { s3Import: true });
506508
/** Version "11.6". */
@@ -519,6 +521,8 @@ export class AuroraPostgresEngineVersion {
519521
public static readonly VER_11_14 = AuroraPostgresEngineVersion.of('11.14', '11', { s3Import: true, s3Export: true });
520522
/** Version "11.15". */
521523
public static readonly VER_11_15 = AuroraPostgresEngineVersion.of('11.15', '11', { s3Import: true, s3Export: true });
524+
/** Version "11.16". */
525+
public static readonly VER_11_16 = AuroraPostgresEngineVersion.of('11.16', '11', { s3Import: true, s3Export: true });
522526
/** Version "12.4". */
523527
public static readonly VER_12_4 = AuroraPostgresEngineVersion.of('12.4', '12', { s3Import: true, s3Export: true });
524528
/** Version "12.6". */
@@ -529,6 +533,8 @@ export class AuroraPostgresEngineVersion {
529533
public static readonly VER_12_9 = AuroraPostgresEngineVersion.of('12.9', '12', { s3Import: true, s3Export: true });
530534
/** Version "12.10". */
531535
public static readonly VER_12_10 = AuroraPostgresEngineVersion.of('12.10', '12', { s3Import: true, s3Export: true });
536+
/** Version "12.11". */
537+
public static readonly VER_12_11 = AuroraPostgresEngineVersion.of('12.11', '12', { s3Import: true, s3Export: true });
532538
/** Version "13.3". */
533539
public static readonly VER_13_3 = AuroraPostgresEngineVersion.of('13.3', '13', { s3Import: true, s3Export: true });
534540
/** Version "13.4". */
@@ -537,6 +543,8 @@ export class AuroraPostgresEngineVersion {
537543
public static readonly VER_13_5 = AuroraPostgresEngineVersion.of('13.5', '13', { s3Import: true, s3Export: true });
538544
/** Version "13.6". */
539545
public static readonly VER_13_6 = AuroraPostgresEngineVersion.of('13.6', '13', { s3Import: true, s3Export: true });
546+
/** Version "13.7". */
547+
public static readonly VER_13_7 = AuroraPostgresEngineVersion.of('13.7', '13', { s3Import: true, s3Export: true });
540548

541549
/**
542550
* Create a new AuroraPostgresEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)