Module Values.TunnelSource

A connection between a source computer and a destination device.

Sourcetype nonrec t = {
  1. tunnelId : TunnelId.t option;
    (*

    A unique alpha-numeric ID that identifies a tunnel.

    *)
  2. tunnelArn : TunnelArn.t option;
    (*

    The Amazon Resource Name (ARN) of a tunnel.

    *)
  3. status : TunnelStatus.t option;
    (*

    The status of a tunnel. Valid values are: Open and Closed.

    *)
  4. sourceConnectionState : ConnectionState.t option;
    (*

    The connection state of the source application.

    *)
  5. destinationConnectionState : ConnectionState.t option;
    (*

    The connection state of the destination application.

    *)
  6. description : Description.t option;
    (*

    A description of the tunnel.

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

    The destination configuration that specifies the thing name of the destination device and a service name that the local proxy uses to connect to the destination application.

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

    Timeout configuration for the tunnel.

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

    A list of tag metadata associated with the secure tunnel.

    *)
  10. createdAt : DateType.t option;
    (*

    The time when the tunnel was created.

    *)
  11. lastUpdatedAt : DateType.t option;
    (*

    The last time the tunnel was updated.

    *)
}
Sourceval make : ?tunnelId:??? -> ?tunnelArn:??? -> ?status:??? -> ?sourceConnectionState:??? -> ?destinationConnectionState:??? -> ?description:??? -> ?destinationConfig:??? -> ?timeoutConfig:??? -> ?tags:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of TunnelId.t | `Structure of (string * [> `Enum of string | `Integer of TimeoutInMin.t | `List of [> `String of Service.t ] list | `String of ThingName.t | `Timestamp of DateType.t ]) list | `Timestamp of DateType.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