I am trying to run the following command to upgrade from Postgres 10.14 to 11.9
aws rds modify-db-cluster \
--db-cluster-identifier [my db cluster identifier] \
--engine-version 11.9 \
--allow-major-version-upgrade \
--apply-immediately
When I try to run it I get the following message:
Unknown options: --allow-major-version-upgrade
But the documentation
https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_ModifyDBCluster.html
lists AllowMajorVersionUpgrade as the very first parameter.
What is the correct syntax to do a major version upgrade of Aurora Postgres on AWS RDS from the CLI?