Skip to content

Commit c7b236c

Browse files
authored
chore(rds): support 11.22-rds.20240808 for RDS PostgreSQL (#31233)
Add new instance engine. Ref: [Amazon RDS for PostgreSQL announces Extended Support minor 11.22-RDS.20240808](https://aws.amazon.com/about-aws/whats-new/2024/08/amazon-rds-postgresql-minor-11-22-rds-20240808/) ```sh % aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion" --output table --region us-east-1 -------------------------- |DescribeDBEngineVersions| +------------------------+ // omit | 11.22-rds.20240808 | // omit ``` ### Checklist - [ ] 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 2a3279d commit c7b236c

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
@@ -1449,6 +1449,10 @@ export class PostgresEngineVersion {
14491449
* Version "11.22-rds.20240509"
14501450
*/
14511451
public static readonly VER_11_22_RDS_20240509 = PostgresEngineVersion.of('11.22-rds.20240509', '11', { s3Import: true, s3Export: true });
1452+
/**
1453+
* Version "11.22-rds.20240808"
1454+
*/
1455+
public static readonly VER_11_22_RDS_20240808 = PostgresEngineVersion.of('11.22-RDS.20240808', '11', { s3Import: true, s3Export: true });
14521456

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

0 commit comments

Comments
 (0)