Remove From Global Cluster
neptune_remove_from_global_cluster | R Documentation |
Detaches a Neptune DB cluster from a Neptune global database¶
Description¶
Detaches a Neptune DB cluster from a Neptune global database. A secondary cluster becomes a normal standalone cluster with read-write capability instead of being read-only, and no longer receives data from a the primary cluster.
Usage¶
Arguments¶
GlobalClusterIdentifier
[required] The identifier of the Neptune global database from which to detach the specified Neptune DB cluster.
DbClusterIdentifier
[required] The Amazon Resource Name (ARN) identifying the cluster to be detached from the Neptune 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",
StorageEncrypted = TRUE|FALSE,
DeletionProtection = TRUE|FALSE,
GlobalClusterMembers = list(
list(
DBClusterArn = "string",
Readers = list(
"string"
),
IsWriter = TRUE|FALSE
)
)
)
)