Skip to content

Commit 640d88d

Browse files
authored
chore(rds): postgres 16.9-limitless, sqlserver 16.00.4210.1.v1,15.00.4440.1.v1,14.00.3500.1.v1,13.00.6465.1.v1 (#35430)
### Issue # (if applicable) None ### Reason for this change https://aws.amazon.com/about-aws/whats-new/2025/09/amazon-aurora-postgresql-limitless-database-postgresql-16-9/ https://aws.amazon.com/about-aws/whats-new/2025/09/amazon-rds-latest-gdr-updates-microsoft-sql-server/ ### Describe any new or updated permissions being added ### Description of how you validated changes ```console $ aws rds describe-db-engine-versions --engine aurora-postgresql --output table --query 'DBEngineVersions[*].{Engine:Engine,EngineVersion:EngineVersion}' ----------------------------------------- | DescribeDBEngineVersions | +--------------------+------------------+ | Engine | EngineVersion | +--------------------+------------------+ ... | aurora-postgresql | 16.8-limitless | | aurora-postgresql | 16.9 | | aurora-postgresql | 16.9-limitless | ``` ### 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 f701442 commit 640d88d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,6 +1257,9 @@ export class AuroraPostgresEngineVersion {
12571257
public static readonly VER_16_8_LIMITLESS = AuroraPostgresEngineVersion.of('16.8-limitless', '16', { s3Import: true, s3Export: true });
12581258
/** Version "16.9". */
12591259
public static readonly VER_16_9 = AuroraPostgresEngineVersion.of('16.9', '16', { s3Import: true, s3Export: true });
1260+
/** Version "16.9 limitless" */
1261+
public static readonly VER_16_9_LIMITLESS = AuroraPostgresEngineVersion.of('16.9-limitless', '16', { s3Import: true, s3Export: true });
1262+
12601263
/**
12611264
* Version "17.1"
12621265
* @deprecated Version 17.1 is no longer supported by Amazon RDS.

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2833,6 +2833,8 @@ export class SqlServerEngineVersion {
28332833
public static readonly VER_13_00_6455_2_V1 = SqlServerEngineVersion.of('13.00.6455.2.v1', '13.00');
28342834
/** Version "13.00.6460.7.v1". */
28352835
public static readonly VER_13_00_6460_7_V1 = SqlServerEngineVersion.of('13.00.6460.7.v1', '13.00');
2836+
/** Version "13.00.6465.1.v1". */
2837+
public static readonly VER_13_00_6465_1_V1 = SqlServerEngineVersion.of('13.00.6465.1.v1', '13.00');
28362838

28372839
/** Version "14.00" (only a major version, without a specific minor version). */
28382840
public static readonly VER_14 = SqlServerEngineVersion.of('14.00', '14.00');
@@ -2894,6 +2896,8 @@ export class SqlServerEngineVersion {
28942896
public static readonly VER_14_00_3485_1_V1 = SqlServerEngineVersion.of('14.00.3485.1.v1', '14.00');
28952897
/** Version "14.00.3495.9.v1 ". */
28962898
public static readonly VER_14_00_3495_9_V1 = SqlServerEngineVersion.of('14.00.3495.9.v1', '14.00');
2899+
/** Version "14.00.3500.1.v1". */
2900+
public static readonly VER_14_00_3500_1_V1 = SqlServerEngineVersion.of('14.00.3500.1.v1', '14.00');
28972901

28982902
/** Version "15.00" (only a major version, without a specific minor version). */
28992903
public static readonly VER_15 = SqlServerEngineVersion.of('15.00', '15.00');
@@ -2946,6 +2950,8 @@ export class SqlServerEngineVersion {
29462950
public static readonly VER_15_00_4430_1_V1 = SqlServerEngineVersion.of('15.00.4430.1.v1', '15.00');
29472951
/** Version "15.00.4435.7.v1". */
29482952
public static readonly VER_15_00_4435_7_V1 = SqlServerEngineVersion.of('15.00.4435.7.v1', '15.00');
2953+
/** Version "15.00.4440.1.v1". */
2954+
public static readonly VER_15_00_4440_1_V1 = SqlServerEngineVersion.of('15.00.4440.1.v1', '15.00');
29492955

29502956
/** Version "16.00" (only a major version, without a specific minor version). */
29512957
public static readonly VER_16 = SqlServerEngineVersion.of('16.00', '16.00');
@@ -2979,6 +2985,8 @@ export class SqlServerEngineVersion {
29792985
public static readonly VER_16_00_4195_2_V1 = SqlServerEngineVersion.of('16.00.4195.2.v1', '16.00');
29802986
/** Version "16.00.4205.1.v1". */
29812987
public static readonly VER_16_00_4205_1_V1 = SqlServerEngineVersion.of('16.00.4205.1.v1', '16.00');
2988+
/** Version "16.00.4210.1.v1". */
2989+
public static readonly VER_16_00_4210_1_V1 = SqlServerEngineVersion.of('16.00.4210.1.v1', '16.00');
29822990

29832991
/**
29842992
* Create a new SqlServerEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)