AWS 
    stop_db_cluster    
  Stop a RDS Cluster 
 Deletes an Aurora DB cluster
 Below are the details and signature of the activity Python module.
| Type | action | 
| Module | chaosaws.rds.actions | 
| Name | delete_db_cluster | 
| Return | mapping | 
Usage
JSON
{
  "name": "delete-db-cluster",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaosaws.rds.actions",
    "func": "delete_db_cluster",
    "arguments": {
      "db_cluster_identifier": ""
    }
  }
}
YAML
name: delete-db-cluster
provider:
  arguments:
    db_cluster_identifier: ""
  func: delete_db_cluster
  module: chaosaws.rds.actions
  type: python
type: action
Arguments
| Name | Type | Default | Required | Title | Description | 
|---|---|---|---|---|---|
| db_cluster_identifier | string | Yes | DB Cluster ID | Database cluster identifier | |
| skip_final_snapshot | boolean | true | No | Skip Final Snapshot | Whether the final snapshot of the database should be skipped | 
| delete_automated_backups | boolean | true | No | Delete Automated Backups | Whether to delete the existing automated backups | 
Signature
def delete_db_cluster(
        db_cluster_identifier: str,
        skip_final_snapshot: bool = True,
        db_snapshot_identifier: str = None,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
    pass