Skip to content

Commit

Permalink
feat(rds): RDS for SQL Server 16 without a specific minor version (#2…
Browse files Browse the repository at this point in the history
…8615)

This PR supports version 16 for RDS for SQL Server without a specific minor version.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
go-to-k committed Jan 9, 2024
1 parent 3656a4c commit 382d261
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 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 @@ -1975,6 +1975,9 @@ export class SqlServerEngineVersion {
public static readonly VER_15_00_4335_1_V1 = SqlServerEngineVersion.of('15.00.4335.1.v1', '15.00');
/** Version "15.00.4345.5.v1". */
public static readonly VER_15_00_4345_5_V1 = SqlServerEngineVersion.of('15.00.4345.5.v1', '15.00');

/** Version "16.00" (only a major version, without a specific minor version). */
public static readonly VER_16 = SqlServerEngineVersion.of('16.00', '16.00');
/** Version "16.00.4085.2.v1". */
public static readonly VER_16_00_4085_2_V1 = SqlServerEngineVersion.of('16.00.4085.2.v1', '16.00');
/** Version "16.00.4095.4.v1". */
Expand Down

0 comments on commit 382d261

Please sign in to comment.