Module Values.DevEnvironmentAccessDetailsSource

Information about connection details for a Dev Environment.

Sourcetype nonrec t = {
  1. streamUrl : SensitiveString.t option;
    (*

    The URL used to send commands to and from the Dev Environment.

    *)
  2. tokenValue : SensitiveString.t option;
    (*

    An encrypted token value that contains session and caller information used to authenticate the connection.

    *)
}
Sourceval make : ?streamUrl:??? -> ?tokenValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveString.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