Skip to content

List Control Panels

route53recoverycontrolconfig_list_control_panels R Documentation

Returns an array of control panels in an account or in a cluster

Description

Returns an array of control panels in an account or in a cluster.

Usage

route53recoverycontrolconfig_list_control_panels(ClusterArn, MaxResults,
  NextToken)

Arguments

ClusterArn

The Amazon Resource Name (ARN) of a cluster.

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(
  ControlPanels = list(
    list(
      ClusterArn = "string",
      ControlPanelArn = "string",
      DefaultControlPanel = TRUE|FALSE,
      Name = "string",
      RoutingControlCount = 123,
      Status = "PENDING"|"DEPLOYED"|"PENDING_DELETION",
      Owner = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_control_panels(
  ClusterArn = "string",
  MaxResults = 123,
  NextToken = "string"
)