Skip to content

Commit

Permalink
chore(rds): support 11.22-rds.20240808 for RDS PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
mazyu36 committed Aug 28, 2024
1 parent 0b09e52 commit a2aea42
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1449,6 +1449,11 @@ export class PostgresEngineVersion {
* Version "11.22-rds.20240509"
*/
public static readonly VER_11_22_RDS_20240509 = PostgresEngineVersion.of('11.22-rds.20240509', '11', { s3Import: true, s3Export: true });
/**
* Version "11.22-rds.20240808"
*/
public static readonly VER_11_22_RDS_20240808 = PostgresEngineVersion.of('11.22-RDS.20240808', '11', { s3Import: true, s3Export: true });


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

0 comments on commit a2aea42

Please sign in to comment.