Remove From Global Cluster
rds_remove_from_global_cluster | R Documentation |
Detaches an Aurora secondary cluster from an Aurora global database cluster¶
Description¶
Detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary cluster in a different Region.
This operation only applies to Aurora DB clusters.
Usage¶
Arguments¶
GlobalClusterIdentifier
The cluster identifier to detach from the Aurora global database cluster.
DbClusterIdentifier
The Amazon Resource Name (ARN) identifying the cluster that was detached from the Aurora global database cluster.
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
)
)
)