probeRoute 53

get_health_check_status

Get the status of the specified health check

Activity as code

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

Typeprobe
Modulechaosaws.route53.probes
Nameget_health_check_status
Returnmapping

Usage

JSON

{
  "name": "get-health-check-status",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.route53.probes",
    "func": "get_health_check_status",
    "arguments": {
      "check_id": ""
    }
  }
}

YAML

name: get-health-check-status
provider:
  arguments:
    check_id: ""
  func: get_health_check_status
  module: chaosaws.route53.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
check_idstringYesHealth Check IDIdentifier of a health check

Signature

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