You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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*
0 commit comments