I want to remove an aws elasticache redis cluster using boto3.
The syntax I was expecting to work was:
response = client.delete_cache_cluster(
CacheClusterId='string'
)
But it does not work. In fact, the documentation states:
This operation is not valid for:
- Redis (cluster mode enabled) clusters
I'm not able to find how can I delete the redis cluster...