AWS
stop_db_instance
Stops a RDS DB instance
Below are the details and signature of the activity Python module.
Type | probe |
Module | chaosaws.rds.probes |
Name | cluster_membership_count |
Return | integer |
Usage
JSON
{
"name": "cluster-membership-count",
"type": "probe",
"provider": {
"type": "python",
"module": "chaosaws.rds.probes",
"func": "cluster_membership_count",
"arguments": {
"cluster_id": ""
}
}
}
YAML
name: cluster-membership-count
provider:
arguments:
cluster_id: ""
func: cluster_membership_count
module: chaosaws.rds.probes
type: python
type: probe
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
cluster_id | string | null | No | DB Cluster ID | Database cluster identifier |
Signature
def cluster_membership_count(cluster_id: str,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> int:
pass