Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(rds): support engine versions for Aurora MySQL and RDS for SQL …
…Server (#31418) This PR supports engine versions for Aurora MySQL and RDS for SQL Server. RDS for SQL Server: 15.00.4385.2.v1 and 16.00.4135.4.v1 https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html ``` ❯ aws rds describe-db-engine-versions --engine sqlserver-ee --query "DBEngineVersions[?EngineVersion=='15.00.4385.2.v1'||EngineVersion=='16.00.4135.4.v1'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]" [ [ "SQL Server 2019 15.00.4385.2.v1", "15.00.4385.2.v1", "sqlserver-ee-15.0", "15.00", "available" ], [ "SQL Server 2022 16.00.4135.4.v1", "16.00.4135.4.v1", "sqlserver-ee-16.0", "16.00", "available" ] ] ``` Aurora MySQL: 2.12.3 https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.20Updates.html ``` ❯ aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[?EngineVersion=='5.7.mysql_aurora.2.12.3'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]" [ [ "Aurora MySQL 2.12.3 (compatible with MySQL 5.7.44)", "5.7.mysql_aurora.2.12.3", "aurora-mysql5.7", "5.7", "available" ] ] ``` ### 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*
- Loading branch information