Learn R Programming

paws.database (version 0.1.12)

elasticache_modify_global_replication_group: Modifies the settings for a Global Datastore

Description

Modifies the settings for a Global Datastore.

Usage

elasticache_modify_global_replication_group(GlobalReplicationGroupId,
  ApplyImmediately, CacheNodeType, EngineVersion,
  GlobalReplicationGroupDescription, AutomaticFailoverEnabled)

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

ApplyImmediately

[required] This parameter causes the modifications in this request and any pending modifications to be applied, asynchronously and as soon as possible. Modifications to Global Replication Groups cannot be requested to be applied in PreferredMaintenceWindow.

CacheNodeType

A valid cache node type that you want to scale this Global Datastore to.

EngineVersion

The upgraded version of the cache engine to be run on the clusters in the Global Datastore.

GlobalReplicationGroupDescription

A description of the Global Datastore

AutomaticFailoverEnabled

Determines whether a read replica is automatically promoted to read/write primary if the existing primary encounters a failure.

Request syntax

svc$modify_global_replication_group(
  GlobalReplicationGroupId = "string",
  ApplyImmediately = TRUE|FALSE,
  CacheNodeType = "string",
  EngineVersion = "string",
  GlobalReplicationGroupDescription = "string",
  AutomaticFailoverEnabled = TRUE|FALSE
)