Skip to content

Commit 986f54c

Browse files
authored
chore(rds): support RDS for SQL Server 14.00.3465.1.v1, 13.00.6435.1.v1 and 12.00.6449.1.v1 (#28085)
This PR supports minor versions for RDS for SQL Server. - SQL Server 2014 SP3 CU4 GDR - 12.0.6449.1 - SQL Server 2016 SP3 GDR - 13.0.6435.1 - SQL Server 2017 CU31 GDR - 14.0.3465.1 - (SQL Server 2019 CU23 - 15.0.4335.1) - This has already been added to the CDK. https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-rds-sql-server-supports-minor-versions/?nc1=h_ls ```bash ❯ aws rds describe-db-engine-versions \ ∙ --engine sqlserver-ee \ ∙ --query "DBEngineVersions[?EngineVersion=='14.00.3465.1.v1'||EngineVersion=='13.00.6435.1.v1'||EngineVersion=='12.00.6449.1.v1'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]" [ [ "SQL Server 2014 12.00.6449.1.v1", "12.00.6449.1.v1", "sqlserver-ee-12.0", "12.00", "available" ], [ "SQL Server 2016 13.00.6435.1.v1", "13.00.6435.1.v1", "sqlserver-ee-13.0", "13.00", "available" ], [ "SQL Server 2017 14.00.3465.1.v1", "14.00.3465.1.v1", "sqlserver-ee-14.0", "14.00", "available" ] ] ``` ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 9f64338 commit 986f54c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1849,6 +1849,8 @@ export class SqlServerEngineVersion {
18491849
public static readonly VER_12_00_6439_10_V1 = SqlServerEngineVersion.of('12.00.6439.10.v1', '12.00');
18501850
/** Version "12.00.6444.4.v1". */
18511851
public static readonly VER_12_00_6444_4_V1 = SqlServerEngineVersion.of('12.00.6444.4.v1', '12.00');
1852+
/** Version "12.00.6449.1.v1". */
1853+
public static readonly VER_12_00_6449_1_V1 = SqlServerEngineVersion.of('12.00.6449.1.v1', '12.00');
18521854

18531855
/** Version "13.00" (only a major version, without a specific minor version). */
18541856
public static readonly VER_13 = SqlServerEngineVersion.of('13.00', '13.00');
@@ -1884,6 +1886,8 @@ export class SqlServerEngineVersion {
18841886
public static readonly VER_13_00_6419_1_V1 = SqlServerEngineVersion.of('13.00.6419.1.v1', '13.00');
18851887
/** Version "13.00.6430.49.v1". */
18861888
public static readonly VER_13_00_6430_49_V1 = SqlServerEngineVersion.of('13.00.6430.49.v1', '13.00');
1889+
/** Version "13.00.6435.1.v1". */
1890+
public static readonly VER_13_00_6435_1_V1 = SqlServerEngineVersion.of('13.00.6435.1.v1', '13.00');
18871891

18881892
/** Version "14.00" (only a major version, without a specific minor version). */
18891893
public static readonly VER_14 = SqlServerEngineVersion.of('14.00', '14.00');
@@ -1918,6 +1922,8 @@ export class SqlServerEngineVersion {
19181922
public static readonly VER_14_00_3451_2_V1 = SqlServerEngineVersion.of('14.00.3451.2.v1', '14.00');
19191923
/** Version "14.00.3460.9.v1". */
19201924
public static readonly VER_14_00_3460_9_V1 = SqlServerEngineVersion.of('14.00.3460.9.v1', '14.00');
1925+
/** Version "14.00.3465.1.v1". */
1926+
public static readonly VER_14_00_3465_1_V1 = SqlServerEngineVersion.of('14.00.3465.1.v1', '14.00');
19211927

19221928
/** Version "15.00" (only a major version, without a specific minor version). */
19231929
public static readonly VER_15 = SqlServerEngineVersion.of('15.00', '15.00');

0 commit comments

Comments
 (0)