probeRoute 53

get_hosted_zone

Pull information regarding a specific zone id

Activity as code

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

Typeprobe
Modulechaosaws.route53.probes
Nameget_hosted_zone
Returnmapping

Usage

JSON

{
  "name": "get-hosted-zone",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.route53.probes",
    "func": "get_hosted_zone",
    "arguments": {
      "zone_id": ""
    }
  }
}

YAML

name: get-hosted-zone
provider:
  arguments:
    zone_id: ""
  func: get_hosted_zone
  module: chaosaws.route53.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
zone_idstringYesZone IDRoute53 zone

Signature

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