Skip to content

Commit 491475a

Browse files
authored
feat(rds): support 11.22-rds.20241121 for RDS PostgreSQL (#32508)
Add an engine version. Ref: [Amazon RDS for PostgreSQL announces Extended Support minor 11.22-RDS.20241121](https://aws.amazon.com/about-aws/whats-new/2024/12/amazon-rds-postgresql-minor-11-22-rds-20241121/) ```sh % aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion" --output table --region us-east-1 -------------------------- |DescribeDBEngineVersions| +------------------------+ | 11.22 | | 11.22-rds.20240418 | | 11.22-rds.20240509 | | 11.22-rds.20240808 | | 11.22-rds.20241121 | ... ``` ### 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 e364d2b commit 491475a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -1467,6 +1467,10 @@ export class PostgresEngineVersion {
14671467
* Version "11.22-rds.20240808"
14681468
*/
14691469
public static readonly VER_11_22_RDS_20240808 = PostgresEngineVersion.of('11.22-RDS.20240808', '11', { s3Import: true, s3Export: true });
1470+
/**
1471+
* Version "11.22-RDS.20241121"
1472+
*/
1473+
public static readonly VER_11_22_RDS_20241121 = PostgresEngineVersion.of('11.22-RDS.20241121', '11', { s3Import: true, s3Export: true });
14701474

14711475
/** Version "12" (only a major version, without a specific minor version). */
14721476
public static readonly VER_12 = PostgresEngineVersion.of('12', '12', { s3Import: true });

0 commit comments

Comments
 (0)