probeRDS

cluster_status

Returns the cluster status

Activity as code

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

Typeprobe
Modulechaosaws.rds.probes
Namecluster_status
ReturnUnion[str, List[str]]

Usage

JSON

{
  "name": "cluster-status",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.rds.probes",
    "func": "cluster_status"
  }
}

YAML

name: cluster-status
provider:
  func: cluster_status
  module: chaosaws.rds.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
cluster_idstringnullNoDB Cluster IDDatabase cluster identifier
filterslistnullNoFiltersList of filters instead of a single identifier

Signature

def cluster_status(
        cluster_id: str = None,
        filters: List[Dict[str, Any]] = None,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Union[str, List[str]]:
    pass