Skip to content

Commit 689c661

Browse files
authored
chore(rds): postgres 16.13 (#37540)
### Issue # (if applicable) None ### Reason for this change https://docs.aws.amazon.com/AmazonRDS/latest/PostgreSQLReleaseNotes/postgresql-versions.html#postgresql-versions-version1613 ### Description of changes ### Describe any new or updated permissions being added ### Description of how you validated changes ``` aws rds describe-db-engine-versions --engine aurora-postgresql --output table --query 'DBEngineVersions[*].{Engine:Engine,EngineVersion:EngineVersion}' ------------------------------------------ | DescribeDBEngineVersions | +--------------------+-------------------+ | Engine | EngineVersion | +--------------------+-------------------+ ... | aurora-postgresql | 16.11 | | aurora-postgresql | 16.11-limitless | | aurora-postgresql | 16.13 | ... ``` ### 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 6c1251c commit 689c661

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1372,6 +1372,8 @@ export class AuroraPostgresEngineVersion {
13721372
public static readonly VER_16_11 = AuroraPostgresEngineVersion.of('16.11', '16', { s3Import: true, s3Export: true });
13731373
/** Version "16.11 limitless". */
13741374
public static readonly VER_16_11_LIMITLESS = AuroraPostgresEngineVersion.of('16.11-limitless', '16', { s3Import: true, s3Export: true });
1375+
/** Version "16.13". */
1376+
public static readonly VER_16_13 = AuroraPostgresEngineVersion.of('16.13', '16', { s3Import: true, s3Export: true });
13751377

13761378
/**
13771379
* Version "17.1"

0 commit comments

Comments
 (0)