Module Values.PersistentAppUISource

Holds persistent application user interface information. Applications installed on the Amazon EMR cluster publish user interfaces as web sites to monitor cluster activity.

Sourcetype nonrec t = {
  1. persistentAppUIId : XmlStringMaxLen256.t option;
    (*

    The identifier for the persistent application user interface object.

    *)
  2. persistentAppUITypeList : PersistentAppUITypeList.t option;
    (*

    The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.

    *)
  3. persistentAppUIStatus : XmlStringMaxLen256.t option;
    (*

    The status for the persistent application user interface object.

    *)
  4. authorId : XmlStringMaxLen256.t option;
    (*

    The author ID for the persistent application user interface object.

    *)
  5. creationTime : Date.t option;
    (*

    The creation date and time for the persistent application user interface object.

    *)
  6. lastModifiedTime : Date.t option;
    (*

    The date and time the persistent application user interface object was last changed.

    *)
  7. lastStateChangeReason : XmlString.t option;
    (*

    The reason the persistent application user interface object was last changed.

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

    A collection of tags for the persistent application user interface object.

    *)
}
Sourceval make : ?persistentAppUIId:??? -> ?persistentAppUITypeList:??? -> ?persistentAppUIStatus:??? -> ?authorId:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?lastStateChangeReason:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `Structure of (string * [> `String of String_.t ]) list ] list | `String of XmlStringMaxLen256.t | `Timestamp of Date.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