Module Values.GetLayoutResponseSource

Returns the details for the requested layout.

Sourcetype nonrec t = {
  1. layoutId : LayoutId.t option;
    (*

    The unique identifier of the layout.

    *)
  2. layoutArn : LayoutArn.t option;
    (*

    The Amazon Resource Name (ARN) of the newly created layout.

    *)
  3. name : LayoutName.t option;
    (*

    The name of the layout. It must be unique.

    *)
  4. content : LayoutContent.t option;
    (*

    Information about which fields will be present in the layout, the order of the fields, and read-only attribute of the field.

    *)
  5. tags : Tags.t option;
    (*

    A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.

    *)
  6. deleted : Deleted.t option;
    (*

    Denotes whether or not the resource has been deleted.

    *)
  7. createdTime : CreatedTime.t option;
    (*

    Timestamp at which the resource was created.

    *)
  8. lastModifiedTime : LastModifiedTime.t option;
    (*

    Timestamp at which the resource was created or last modified.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?layoutId:??? -> ?layoutArn:??? -> ?name:??? -> ?content:??? -> ?tags:??? -> ?deleted:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Deleted.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of LayoutId.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldId.t ]) list ] list | `String of FieldGroupNameString.t ]) list ]) list ] list ]) list ]) list ]) list | `Timestamp of CreatedTime.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