actionRDS

stop_db_cluster

Stop a RDS Cluster

Activity as code

Below are the details and signature of the activity Python module.

Typeaction
Modulechaosaws.rds.actions
Namestop_db_cluster
Returnmapping

Usage

JSON

{
  "name": "stop-db-cluster",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaosaws.rds.actions",
    "func": "stop_db_cluster",
    "arguments": {
      "db_cluster_identifier": ""
    }
  }
}

YAML

name: stop-db-cluster
provider:
  arguments:
    db_cluster_identifier: ""
  func: stop_db_cluster
  module: chaosaws.rds.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
db_cluster_identifierstringYesDB Cluster IDDatabase cluster identifier

Signature

def stop_db_cluster(
        db_cluster_identifier: str,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
    pass