AWS
modify_cluster
Set the step concurrency level on the provided cluster
Get a list of instance fleet instances associated with the EMR cluster
Below are the details and signature of the activity Python module.
Type | probe |
Module | chaosaws.emr.probes |
Name | list_cluster_fleet_instances |
Return | mapping |
Usage
JSON
{
"name": "list-cluster-fleet-instances",
"type": "probe",
"provider": {
"type": "python",
"module": "chaosaws.emr.probes",
"func": "list_cluster_fleet_instances",
"arguments": {
"cluster_id": "",
"fleet_id": ""
}
}
}
YAML
name: list-cluster-fleet-instances
provider:
arguments:
cluster_id: ""
fleet_id: ""
func: list_cluster_fleet_instances
module: chaosaws.emr.probes
type: python
type: probe
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
cluster_id | string | Yes | Cluster ID | ||
fleet_id | string | Yes | Fleet ID | ||
fleet_type | string | null | No | Fleet Type | |
instance_states | list | null | No | Instance States | List of instance states to retrieve |
Signature
def list_cluster_fleet_instances(
cluster_id: str,
fleet_id: str,
fleet_type: str = None,
instance_states: List[str] = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass