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 11.4.3 engine version for MariaDB (#31769)
Add new engine version Ref: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MariaDB.Concepts.VersionMgmt.html#MariaDB.Concepts.VersionMgmt.Supported ```sh % aws rds describe-db-engine-versions --engine mariadb --query "DBEngineVersions[?EngineVersion=='11.4.3'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]" --output json [ [ "MariaDB 11.4.3", "11.4.3", "mariadb11.4", "11.4", "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