probeEMR

describe_instance_group

Describe a single EMR instance group

Activity as code

Below are the details and signature of the activity Python module.

Typeprobe
Modulechaosaws.emr.probes
Namedescribe_instance_group
Returnmapping

Usage

JSON

{
  "name": "describe-instance-group",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.emr.probes",
    "func": "describe_instance_group",
    "arguments": {
      "cluster_id": "",
      "group_id": ""
    }
  }
}

YAML

name: describe-instance-group
provider:
  arguments:
    cluster_id: ""
    group_id: ""
  func: describe_instance_group
  module: chaosaws.emr.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
cluster_idstringYesCluster ID
group_idstringYesGroup ID

Signature

def describe_instance_group(
        cluster_id: str,
        group_id: str,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
    pass