Module Values.OpenTunnelRequestSource

Creates a new tunnel, and returns two client access tokens for clients to use to connect to the IoT Secure Tunneling proxy server. Requires permission to access the OpenTunnel action.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    A short text description of the tunnel.

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

    A collection of tag metadata.

    *)
  3. destinationConfig : DestinationConfig.t option;
    (*

    The destination configuration for the OpenTunnel request.

    *)
  4. timeoutConfig : TimeoutConfig.t option;
    (*

    Timeout configuration for a tunnel.

    *)
}
Sourceval make : ?description:??? -> ?tags:??? -> ?destinationConfig:??? -> ?timeoutConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Description.t | `Structure of (string * [> `Integer of TimeoutInMin.t | `List of [> `String of Service.t ] list | `String of ThingName.t ]) list ]) 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