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 | instance_status |
Return | Union[str, List[str]] |
Usage
JSON
{
"name": "instance-status",
"type": "probe",
"provider": {
"type": "python",
"module": "chaosaws.rds.probes",
"func": "instance_status"
}
}
YAML
name: instance-status
provider:
func: instance_status
module: chaosaws.rds.probes
type: python
type: probe
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
instance_id | string | null | No | Instance ID | Instance identifier |
filters | list | null | No | Filters | List of filters to use instead of a single instance id |
Signature
def instance_status(
instance_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