Delete Global Cluster
rds_delete_global_cluster | R Documentation |
Deletes a global database cluster¶
Description¶
Deletes a global database cluster. The primary and secondary clusters must already be detached or destroyed first.
This action only applies to Aurora DB clusters.
Usage¶
Arguments¶
GlobalClusterIdentifier
[required] The cluster identifier of the global database cluster being deleted.
Value¶
A list with the following syntax:
list(
GlobalCluster = list(
GlobalClusterIdentifier = "string",
GlobalClusterResourceId = "string",
GlobalClusterArn = "string",
Status = "string",
Engine = "string",
EngineVersion = "string",
EngineLifecycleSupport = "string",
DatabaseName = "string",
StorageEncrypted = TRUE|FALSE,
DeletionProtection = TRUE|FALSE,
GlobalClusterMembers = list(
list(
DBClusterArn = "string",
Readers = list(
"string"
),
IsWriter = TRUE|FALSE,
GlobalWriteForwardingStatus = "enabled"|"disabled"|"enabling"|"disabling"|"unknown",
SynchronizationStatus = "connected"|"pending-resync"
)
),
FailoverState = list(
Status = "pending"|"failing-over"|"cancelling",
FromDbClusterArn = "string",
ToDbClusterArn = "string",
IsDataLossAllowed = TRUE|FALSE
)
)
)