I tried to add a DBClusterParameterGroup to aurora postgresql engine. For that I used below command.
db_cluster_params = self.add_resource(
rds.DBClusterParameterGroup(
"CustomAuroraRDSClusterParamGroup",
Description="Aurora RDS Cluster Parameter Group",
Family="aurora-postgresql13",
Parameters={
"time_zone": "UTC"
}
)
)
When I executed the above, I got the below error.
Invalid / Unmodifiable / Unsupported DB Parameter: time_zone
But based on [1] time_zone is a valid parameter. Could you please tell me what is the issue in my script?