List Domains
connectcases_list_domains | R Documentation |
Lists all cases domains in the Amazon Web Services account¶
Description¶
Lists all cases domains in the Amazon Web Services account. Each list item is a condensed summary object of the domain.
Usage¶
connectcases_list_domains(maxResults, nextToken)
Arguments¶
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(
domains = list(
list(
domainArn = "string",
domainId = "string",
name = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_domains(
maxResults = 123,
nextToken = "string"
)