AWS
stop_db_cluster
Stop a RDS Cluster
Below are the details and signature of the activity Python module.
Type | probe |
Module | chaosaws.rds.probes |
Name | cluster_status |
Return | Union[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
Name | Type | Default | Required |
---|---|---|---|
cluster_id | string | null | No |
filters | list | null | No |
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