AWS
get_cache_node_count
Returns the number of cache nodes associated to the cluster
Deletes one or more cache clusters and creates a final snapshot
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.elasticache.actions |
Name | delete_cache_clusters |
Return | list |
Usage
JSON
{
"name": "delete-cache-clusters",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.elasticache.actions",
"func": "delete_cache_clusters",
"arguments": {
"cluster_ids": []
}
}
}
YAML
name: delete-cache-clusters
provider:
arguments:
cluster_ids: []
func: delete_cache_clusters
module: chaosaws.elasticache.actions
type: python
type: action
Arguments
Name | Type | Default | Required |
---|---|---|---|
cluster_ids | list | Yes | |
final_snapshot_id | string | null | No |
Signature
def delete_cache_clusters(
cluster_ids: List[str],
final_snapshot_id: str = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> List[Dict[str, Any]]:
pass