Get Domain Layout
| customerprofiles_get_domain_layout | R Documentation |
Gets the layout to view data for a specific domain¶
Description¶
Gets the layout to view data for a specific domain. This API can only be invoked from the Amazon Connect admin website.
Usage¶
customerprofiles_get_domain_layout(DomainName, LayoutDefinitionName)
Arguments¶
DomainName |
[required] The unique name of the domain. |
LayoutDefinitionName |
[required] The unique name of the layout. |
Value¶
A list with the following syntax:
list(
LayoutDefinitionName = "string",
Description = "string",
DisplayName = "string",
IsDefault = TRUE|FALSE,
LayoutType = "PROFILE_EXPLORER",
Layout = "string",
Version = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
)
)
Request syntax¶
svc$get_domain_layout(
DomainName = "string",
LayoutDefinitionName = "string"
)