probeEMR

describe_instance_fleet

Describe a single EMR instance fleet

Activity as code

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

Typeprobe
Modulechaosaws.emr.probes
Namedescribe_instance_fleet
Returnmapping

Usage

JSON

{
  "name": "describe-instance-fleet",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.emr.probes",
    "func": "describe_instance_fleet",
    "arguments": {
      "cluster_id": "",
      "fleet_id": ""
    }
  }
}

YAML

name: describe-instance-fleet
provider:
  arguments:
    cluster_id: ""
    fleet_id: ""
  func: describe_instance_fleet
  module: chaosaws.emr.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
cluster_idstringYesCluster ID
fleet_idstringYesFleet ID

Signature

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