Skip to content

Commit

Permalink
chore(rds): removed aurora postgres 16.3 cluster engine since it is n…
Browse files Browse the repository at this point in the history
…ot supported as of now.

This PR removes the yet unreleased version of Aurora Postgres version `16.3` that was added in PR #30242.

Running `aws rds describe-db-engine-versions --engine aurora-postgresql --query '*[].[EngineVersion]' --output text` via AWS CLI does not list `16.3` version yet.
  • Loading branch information
ashishdhingra committed May 21, 2024
1 parent 32e9b02 commit d28109a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1007,8 +1007,6 @@ export class AuroraPostgresEngineVersion {
public static readonly VER_16_1 = AuroraPostgresEngineVersion.of('16.1', '16', { s3Import: true, s3Export: true });
/** Version "16.2". */
public static readonly VER_16_2 = AuroraPostgresEngineVersion.of('16.2', '16', { s3Import: true, s3Export: true });
/** Version "16.3". */
public static readonly VER_16_3 = AuroraPostgresEngineVersion.of('16.3', '16', { s3Import: true, s3Export: true });

/**
* Create a new AuroraPostgresEngineVersion with an arbitrary version.
Expand Down

0 comments on commit d28109a

Please sign in to comment.