Skip to content

List Layouts

connectcases_list_layouts R Documentation

Lists all layouts in the given cases domain

Description

Lists all layouts in the given cases domain. Each list item is a condensed summary object of the layout.

Usage

connectcases_list_layouts(domainId, maxResults, nextToken)

Arguments

domainId

[required] The unique identifier of the Cases domain.

maxResults

The maximum number of results to return per page.

nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

Value

A list with the following syntax:

list(
  layouts = list(
    list(
      layoutArn = "string",
      layoutId = "string",
      name = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_layouts(
  domainId = "string",
  maxResults = 123,
  nextToken = "string"
)