Update Cluster
route53recoverycontrolconfig_update_cluster | R Documentation |
Updates an existing cluster¶
Description¶
Updates an existing cluster. You can only update the network type of a cluster.
Usage¶
route53recoverycontrolconfig_update_cluster(ClusterArn, NetworkType)
Arguments¶
ClusterArn |
[required] The Amazon Resource Name (ARN) of the cluster. |
NetworkType |
[required] The network type of the cluster. NetworkType can be one of the following: IPV4, DUALSTACK. |
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",
NetworkType = "IPV4"|"DUALSTACK"
)
)
Request syntax¶
svc$update_cluster(
ClusterArn = "string",
NetworkType = "IPV4"|"DUALSTACK"
)