Module Values.CreateDomainLayoutRequestSource

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

Sourcetype nonrec t = {
  1. domainName : Name.t;
    (*

    The unique name of the domain.

    *)
  2. layoutDefinitionName : Name.t;
    (*

    The unique name of the layout.

    *)
  3. description : SensitiveText.t;
    (*

    The description of the layout

    *)
  4. displayName : DisplayName.t;
    (*

    The display name of the layout

    *)
  5. isDefault : Boolean.t option;
    (*

    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.

    *)
  6. layoutType : LayoutType.t;
    (*

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

    *)
  7. layout : SensitiveString1To2000000.t;
    (*

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

    *)
  8. tags : TagMap.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?isDefault:??? -> ?tags:??? -> domainName:Name.t -> layoutDefinitionName:Name.t -> description:SensitiveText.t -> displayName:DisplayName.t -> layoutType:LayoutType.t -> layout:SensitiveString1To2000000.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t