Skip to content

List Clusters

route53recoverycontrolconfig_list_clusters R Documentation

Returns an array of all the clusters in an account

Description

Returns an array of all the clusters in an account.

Usage

route53recoverycontrolconfig_list_clusters(MaxResults, NextToken)

Arguments

MaxResults

The number of objects that you want to return with this call.

NextToken

The token that identifies which batch of results you want to see.

Value

A list with the following syntax:

list(
  Clusters = list(
    list(
      ClusterArn = "string",
      ClusterEndpoints = list(
        list(
          Endpoint = "string",
          Region = "string"
        )
      ),
      Name = "string",
      Status = "PENDING"|"DEPLOYED"|"PENDING_DELETION",
      Owner = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_clusters(
  MaxResults = 123,
  NextToken = "string"
)