actionRDS

delete_db_cluster_endpoint

Deletes the custom endpoint of an Aurora cluster

Activity as code

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

Typeaction
Modulechaosaws.rds.actions
Namedelete_db_cluster_endpoint
Returnmapping

Usage

JSON

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

YAML

name: delete-db-cluster-endpoint
provider:
  arguments:
    db_cluster_identifier: ""
  func: delete_db_cluster_endpoint
  module: chaosaws.rds.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
db_cluster_identifierstringYesDB Cluster IDDatabase cluster identifier

Signature

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