Skip to content

Create Domain Layout

customerprofiles_create_domain_layout R Documentation

Creates the layout to view data for a specific domain

Description

Creates the layout to view data for a specific domain. This API can only be invoked from the Amazon Connect admin website.

Usage

customerprofiles_create_domain_layout(DomainName, LayoutDefinitionName,
  Description, DisplayName, IsDefault, LayoutType, Layout, Tags)

Arguments

DomainName

[required] The unique name of the domain.

LayoutDefinitionName

[required] The unique name of the layout.

Description

[required] The description of the layout

DisplayName

[required] The display name of the layout

IsDefault

If set to true for a layout, this layout will be used by default to view data. If set to false, then the layout will not be used by default, but it can be used to view data by explicitly selecting it in the console.

LayoutType

[required] The type of layout that can be used to view data under a Customer Profiles domain.

Layout

[required] A customizable layout that can be used to view data under a Customer Profiles domain.

Tags

The tags used to organize, track, or control access for this resource.

Value

A list with the following syntax:

list(
  LayoutDefinitionName = "string",
  Description = "string",
  DisplayName = "string",
  IsDefault = TRUE|FALSE,
  LayoutType = "PROFILE_EXPLORER",
  Layout = "string",
  Version = "string",
  Tags = list(
    "string"
  ),
  CreatedAt = as.POSIXct(
    "2015-01-01"
  ),
  LastUpdatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$create_domain_layout(
  DomainName = "string",
  LayoutDefinitionName = "string",
  Description = "string",
  DisplayName = "string",
  IsDefault = TRUE|FALSE,
  LayoutType = "PROFILE_EXPLORER",
  Layout = "string",
  Tags = list(
    "string"
  )
)