List Domain Layouts
| customerprofiles_list_domain_layouts | R Documentation |
Lists the existing layouts that can be used to view data for a specific domain¶
Description¶
Lists the existing layouts that can be used to view data for a specific domain. This API can only be invoked from the Amazon Connect admin website.
Usage¶
customerprofiles_list_domain_layouts(DomainName, NextToken, MaxResults)
Arguments¶
DomainName |
[required] The unique name of the domain. |
NextToken |
Identifies the next page of results to return. |
MaxResults |
The maximum number of objects returned per page. |
Value¶
A list with the following syntax:
list(
Items = list(
list(
LayoutDefinitionName = "string",
Description = "string",
DisplayName = "string",
IsDefault = TRUE|FALSE,
LayoutType = "PROFILE_EXPLORER",
Tags = list(
"string"
),
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_domain_layouts(
DomainName = "string",
NextToken = "string",
MaxResults = 123
)