Increase Node Groups In Global Replication Group
elasticache_increase_node_groups_in_global_replication_group | R Documentation |
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)
Arguments¶
GlobalReplicationGroupId |
[required] The name of the Global datastore |
NodeGroupCount |
[required] Total number of node groups you want |
RegionalConfigurations |
Describes the replication group IDs, the Amazon 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. |
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"
)
)
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
)