Create Multi Region Cluster
| memorydb_create_multi_region_cluster | R Documentation | 
Creates a new multi-Region cluster¶
Description¶
Creates a new multi-Region cluster.
Usage¶
memorydb_create_multi_region_cluster(MultiRegionClusterNameSuffix,
  Description, Engine, EngineVersion, NodeType,
  MultiRegionParameterGroupName, NumShards, TLSEnabled, Tags)
Arguments¶
| MultiRegionClusterNameSuffix | [required] A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions. | 
| Description | A description for the multi-Region cluster. | 
| Engine | The name of the engine to be used for the multi-Region cluster. | 
| EngineVersion | The version of the engine to be used for the multi-Region cluster. | 
| NodeType | [required] The node type to be used for the multi-Region cluster. | 
| MultiRegionParameterGroupName | The name of the multi-Region parameter group to be associated with the cluster. | 
| NumShards | The number of shards for the multi-Region cluster. | 
| TLSEnabled | Whether to enable TLS encryption for the multi-Region cluster. | 
| Tags | A list of tags to be applied to the multi-Region cluster. | 
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$create_multi_region_cluster(
  MultiRegionClusterNameSuffix = "string",
  Description = "string",
  Engine = "string",
  EngineVersion = "string",
  NodeType = "string",
  MultiRegionParameterGroupName = "string",
  NumShards = 123,
  TLSEnabled = TRUE|FALSE,
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)