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 minor versions for RDS for SQL Server (#31491)
### Issue # (if applicable)
Closes #<issue number here>.
### Reason for this change
This PR supports engine versions for RDS for SQL Server.
- SQL Server 2016 - 13.00.6445.1
- SQL Server 2017 - 14.00.3475.1
- SQL Server 2019 - 15.00.4390.2
- SQL Server 2022 - 16.00.4140.3
https://aws.amazon.com/about-aws/whats-new/2024/09/amazon-rds-sql-server-minor-versions-september-2024/
```
❯ aws rds describe-db-engine-versions --engine sqlserver-ee --query "DBEngineVersions[?EngineVersion=='13.00.6445.1.v1'||EngineVersion=='14.00.3475.1.v1'||EngineVersion=='15.00.4390.2.v1'||EngineVersion=='16.00.4140.3.v1'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]"
[
[
"SQL Server 2016 13.00.6445.1.v1",
"13.00.6445.1.v1",
"sqlserver-ee-13.0",
"13.00",
"available"
],
[
"SQL Server 2017 14.00.3475.1.v1",
"14.00.3475.1.v1",
"sqlserver-ee-14.0",
"14.00",
"available"
],
[
"SQL Server 2019 15.00.4390.2.v1",
"15.00.4390.2.v1",
"sqlserver-ee-15.0",
"15.00",
"available"
],
[
"SQL Server 2022 16.00.4140.3.v1",
"16.00.4140.3.v1",
"sqlserver-ee-16.0",
"16.00",
"available"
]
]
```
### Description of changes
### Description of how you validated changes
### 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*
0 commit comments