Learn R Programming

paws.database (version 0.1.12)

elasticache_disassociate_global_replication_group: 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 AWS region.

Usage

elasticache_disassociate_global_replication_group(
  GlobalReplicationGroupId, ReplicationGroupId, ReplicationGroupRegion)

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"
  )
)

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 AWS region of secondary cluster you wish to remove from the Global Datastore

Request syntax

svc$disassociate_global_replication_group(
  GlobalReplicationGroupId = "string",
  ReplicationGroupId = "string",
  ReplicationGroupRegion = "string"
)