probeEMR

describe_cluster

Describe a single EMR cluster

Activity as code

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

Typeprobe
Modulechaosaws.emr.probes
Namedescribe_cluster
Returnmapping

Usage

JSON

{
  "name": "describe-cluster",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.emr.probes",
    "func": "describe_cluster",
    "arguments": {
      "cluster_id": ""
    }
  }
}

YAML

name: describe-cluster
provider:
  arguments:
    cluster_id: ""
  func: describe_cluster
  module: chaosaws.emr.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
cluster_idstringYesCluster ID

Signature

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