Disassociate Global Replication Group
elasticache_disassociate_global_replication_group | R Documentation |
Remove a secondary cluster from the Global datastore using the Global datastore name¶
Description¶
Remove a secondary cluster from the Global datastore using the Global datastore name. The secondary cluster will no longer receive updates from the primary cluster, but will remain as a standalone cluster in that Amazon region.
Usage¶
elasticache_disassociate_global_replication_group(
GlobalReplicationGroupId, ReplicationGroupId, ReplicationGroupRegion)
Arguments¶
GlobalReplicationGroupId
[required] The name of the Global datastore
ReplicationGroupId
[required] The name of the secondary cluster you wish to remove from the Global datastore
ReplicationGroupRegion
[required] The Amazon region of secondary cluster you wish to remove from the Global datastore
Value¶
A list with the following syntax:
list(
GlobalReplicationGroup = list(
GlobalReplicationGroupId = "string",
GlobalReplicationGroupDescription = "string",
Status = "string",
CacheNodeType = "string",
Engine = "string",
EngineVersion = "string",
Members = list(
list(
ReplicationGroupId = "string",
ReplicationGroupRegion = "string",
Role = "string",
AutomaticFailover = "enabled"|"disabled"|"enabling"|"disabling",
Status = "string"
)
),
ClusterEnabled = TRUE|FALSE,
GlobalNodeGroups = list(
list(
GlobalNodeGroupId = "string",
Slots = "string"
)
),
AuthTokenEnabled = TRUE|FALSE,
TransitEncryptionEnabled = TRUE|FALSE,
AtRestEncryptionEnabled = TRUE|FALSE,
ARN = "string"
)
)