AWS
cluster_status
Returns the cluster status
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.rds.actions |
Name | stop_db_instance |
Return | mapping |
Usage
JSON
{
"name": "stop-db-instance",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.rds.actions",
"func": "stop_db_instance",
"arguments": {
"db_instance_identifier": ""
}
}
}
YAML
name: stop-db-instance
provider:
arguments:
db_instance_identifier: ""
func: stop_db_instance
module: chaosaws.rds.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
db_instance_identifier | string | Yes | DB Instance ID | Database instance identifier | |
db_snapshot_identifier | string | null | No | DN Snapshot ID | Database snapshot identifier |
Signature
def stop_db_instance(
db_instance_identifier: str,
db_snapshot_identifier: str = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass