Module Values.SessionSource

Describes a web-based, remote graphical user interface (GUI), Amazon DCV session. The session is used to access a virtual computer’s operating system or application.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The session name.

    *)
  2. url : SensitiveNonEmptyString.t option;
    (*

    The session URL.

    *)
  3. isPrimary : Boolean.t option;
    (*

    When true, this Boolean value indicates the primary session for the specified resource.

    *)
}
Sourceval make : ?name:??? -> ?url:??? -> ?isPrimary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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