AWS
describe_cluster
Describe a single EMR cluster
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.emr.actions |
Name | modify_cluster |
Return | mapping |
Usage
JSON
{
"name": "modify-cluster",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.emr.actions",
"func": "modify_cluster",
"arguments": {
"cluster_id": "",
"concurrency": 0
}
}
}
YAML
name: modify-cluster
provider:
arguments:
cluster_id: ""
concurrency: 0
func: modify_cluster
module: chaosaws.emr.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
cluster_id | string | Yes | Cluster ID | ||
concurrency | integer | Yes | Concurrency | How many steps can be done concurrently (1 - 256) |
Signature
def modify_cluster(
cluster_id: str,
concurrency: int,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass