Skip to content

Commit 111ffc2

Browse files
authored
feat(rds): support Aurora PostgreSQL Limitless Database PostgreSQL 16.6 (#33162)
Add new Limitless Database Engine. Ref: * https://aws.amazon.com/about-aws/whats-new/2025/01/amazon-aurora-postgresql-limitless-database-16-6/ * https://docs.aws.amazon.com/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/limitless-updates.html#16.6-limitless ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 01abd83 commit 111ffc2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,8 @@ export class AuroraPostgresEngineVersion {
10871087
public static readonly VER_16_5 = AuroraPostgresEngineVersion.of('16.5', '16', { s3Import: true, s3Export: true });
10881088
/** Version "16.6". */
10891089
public static readonly VER_16_6 = AuroraPostgresEngineVersion.of('16.6', '16', { s3Import: true, s3Export: true });
1090+
/** Version "16.6 limitless" */
1091+
public static readonly VER_16_6_LIMITLESS = AuroraPostgresEngineVersion.of('16.6-limitless', '16', { s3Import: true, s3Export: true });
10901092
/** Version "17.1". */
10911093
public static readonly VER_17_1 = AuroraPostgresEngineVersion.of('17.1', '17', { s3Import: true, s3Export: true });
10921094
/** Version "17.2". */

0 commit comments

Comments
 (0)