Learn R Programming

paws.database (version 0.1.12)

elasticache_increase_node_groups_in_global_replication_group: Increase the number of node groups in the Global Datastore

Description

Increase the number of node groups in the Global Datastore

Usage

elasticache_increase_node_groups_in_global_replication_group(
  GlobalReplicationGroupId, NodeGroupCount, RegionalConfigurations,
  ApplyImmediately)

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

NodeGroupCount

[required] The number of node groups you wish to add

RegionalConfigurations

Describes the replication group IDs, the AWS regions where they are stored and the shard configuration for each that comprise the Global Datastore

ApplyImmediately

[required] Indicates that the process begins immediately. At present, the only permitted value for this parameter is true.

Request syntax

svc$increase_node_groups_in_global_replication_group(
  GlobalReplicationGroupId = "string",
  NodeGroupCount = 123,
  RegionalConfigurations = list(
    list(
      ReplicationGroupId = "string",
      ReplicationGroupRegion = "string",
      ReshardingConfiguration = list(
        list(
          NodeGroupId = "string",
          PreferredAvailabilityZones = list(
            "string"
          )
        )
      )
    )
  ),
  ApplyImmediately = TRUE|FALSE
)