Amazon web services 如何使用awscli停止elasticache节点?

Amazon web services 如何使用awscli停止elasticache节点?,amazon-web-services,aws-cli,Amazon Web Services,Aws Cli,我是aws和elasticache的新手。我为测试创建了一个集群,但现在我想停止节点 所以。。我可以用awscli阻止elasticache节点吗?如果是,如何删除?我猜您想要“删除缓存群集: aws elasticache删除缓存群集--缓存群集id 以下命令将为您提供所有节点: aws elasticache describe-cache-clusters --cache-cluster-id $cacheClusterId --show-cache-node-info --query

我是aws和elasticache的新手。我为测试创建了一个集群,但现在我想停止节点


所以。。我可以用awscli阻止elasticache节点吗?如果是,如何删除?

我猜您想要“删除缓存群集:

aws elasticache删除缓存群集--缓存群集id
以下命令将为您提供所有节点:

aws elasticache describe-cache-clusters --cache-cluster-id $cacheClusterId  --show-cache-node-info  --query 'CacheClusters[*].CacheNodes[*].[Endpoint.Address]'  --output text --region us-east-1

这将删除集群。有可能暂时停止吗?@zaitsman似乎没有。看见
aws elasticache describe-cache-clusters --cache-cluster-id $cacheClusterId  --show-cache-node-info  --query 'CacheClusters[*].CacheNodes[*].[Endpoint.Address]'  --output text --region us-east-1