Skip to content

Commit a51c0e0

Browse files
authored
chore(rds): add aurora postgres engine version v17.5. (#34900)
Issue # (if applicable) Closes #34896 ### Reason for this change Add missing Aurora Postgres Engine Version v17.5 ### Description of changes Added the new Engine Version ### Describe any new or updated permissions being added NA ### Description of how you validated changes NA ### 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 54d8a84 commit a51c0e0

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,6 +1259,8 @@ export class AuroraPostgresEngineVersion {
12591259
public static readonly VER_17_2 = AuroraPostgresEngineVersion.of('17.2', '17', { s3Import: true, s3Export: true });
12601260
/** Version "17.4". */
12611261
public static readonly VER_17_4 = AuroraPostgresEngineVersion.of('17.4', '17', { s3Import: true, s3Export: true });
1262+
/** Version "17.5". */
1263+
public static readonly VER_17_5 = AuroraPostgresEngineVersion.of('17.5', '17', { s3Import: true, s3Export: true });
12621264

12631265
/**
12641266
* Create a new AuroraPostgresEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)