Update Multi Region Cluster
memorydb_update_multi_region_cluster | R Documentation |
Updates the configuration of an existing multi-Region cluster¶
Description¶
Updates the configuration of an existing multi-Region cluster.
Usage¶
memorydb_update_multi_region_cluster(MultiRegionClusterName, NodeType,
Description, EngineVersion, ShardConfiguration,
MultiRegionParameterGroupName, UpdateStrategy)
Arguments¶
MultiRegionClusterName
[required] The name of the multi-Region cluster to be updated.
NodeType
The new node type to be used for the multi-Region cluster.
Description
A new description for the multi-Region cluster.
EngineVersion
The new engine version to be used for the multi-Region cluster.
ShardConfiguration
MultiRegionParameterGroupName
The new multi-Region parameter group to be associated with the cluster.
UpdateStrategy
Whether to force the update even if it may cause data loss.
Value¶
A list with the following syntax:
list(
MultiRegionCluster = list(
MultiRegionClusterName = "string",
Description = "string",
Status = "string",
NodeType = "string",
Engine = "string",
EngineVersion = "string",
NumberOfShards = 123,
Clusters = list(
list(
ClusterName = "string",
Region = "string",
Status = "string",
ARN = "string"
)
),
MultiRegionParameterGroupName = "string",
TLSEnabled = TRUE|FALSE,
ARN = "string"
)
)
Request syntax¶
svc$update_multi_region_cluster(
MultiRegionClusterName = "string",
NodeType = "string",
Description = "string",
EngineVersion = "string",
ShardConfiguration = list(
ShardCount = 123
),
MultiRegionParameterGroupName = "string",
UpdateStrategy = "coordinated"|"uncoordinated"
)