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 RDS for PostgreSQL 16.1 and 15.5 (#28097)
This PR supports RDS for PostgreSQL 16.1 and 15.5. ```bash ❯ aws rds describe-db-engine-versions \ ∙ --engine postgres \ ∙ --query "DBEngineVersions[?EngineVersion=='16.1'||EngineVersion=='15.5'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]" [ [ "PostgreSQL 15.5-R1", "15.5", "postgres15", "15", "available" ], [ "PostgreSQL 16.1-R1", "16.1", "postgres16", "16", "available" ] ] ``` https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-rds-postgresql-major-version-16/ ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
- Loading branch information