AWS
service_is_deploying
Checks to make sure there is not an in-progress deployment
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.ecs.actions |
Name | delete_cluster |
Return | mapping |
Usage
JSON
{
"name": "delete-cluster",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.ecs.actions",
"func": "delete_cluster",
"arguments": {
"cluster": ""
}
}
}
YAML
name: delete-cluster
provider:
arguments:
cluster: ""
func: delete_cluster
module: chaosaws.ecs.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
cluster | string | Yes | Cluster | Name of the target ECS cluster |
cluster: The ECS cluster name or ARN
Signature
def delete_cluster(
cluster: str,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass