Create Cluster
route53recoverycontrolconfig_create_cluster | R Documentation |
Create a new cluster¶
Description¶
Create a new cluster. A cluster is a set of redundant Regional endpoints against which you can run API calls to update or get the state of one or more routing controls. Each cluster has a name, status, Amazon Resource Name (ARN), and an array of the five cluster endpoints (one for each supported Amazon Web Services Region) that you can use with API calls to the cluster data plane.
Usage¶
Arguments¶
ClientToken
A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an action, specify a client token in the request.
ClusterName
[required] The name of the cluster.
Tags
The tags associated with the cluster.
Value¶
A list with the following syntax:
list(
Cluster = list(
ClusterArn = "string",
ClusterEndpoints = list(
list(
Endpoint = "string",
Region = "string"
)
),
Name = "string",
Status = "PENDING"|"DEPLOYED"|"PENDING_DELETION",
Owner = "string"
)
)