I'm new to aws and elasticache. I created a cluster for test, but now I want to stop the node.
So.. can I stop an elasticache node from with awscli? If so, how?
I'm new to aws and elasticache. I created a cluster for test, but now I want to stop the node.
So.. can I stop an elasticache node from with awscli? If so, how?
I'd guess you want 'delete-cache-cluster:
http://docs.aws.amazon.com/cli/latest/reference/elasticache/index.html
aws elasticache delete-cache-cluster --cache-cluster-id <value>
Following command will give you all the nodes:
aws elasticache describe-cache-clusters --cache-cluster-id $cacheClusterId --show-cache-node-info --query 'CacheClusters[*].CacheNodes[*].[Endpoint.Address]' --output text --region us-east-1