Module Values.SessionSource

The details for the execute command session.

Sourcetype nonrec t = {
  1. sessionId : String_.t option;
    (*

    The ID of the execute command session.

    *)
  2. streamUrl : String_.t option;
    (*

    A URL to the managed agent on the container that the SSM Session Manager client uses to send commands and receive output from the container.

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

    An encrypted token value containing session and caller information. It's used to authenticate the connection to the container.

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