Module Values.TunnelSummarySource

Information about the tunnel.

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

    The unique alpha-numeric identifier for the tunnel.

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

    The Amazon Resource Name of the tunnel.

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

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

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

    A description of the tunnel.

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

    The time the tunnel was created.

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

    The time the tunnel was last updated.

    *)
}
Sourceval make : ?tunnelId:??? -> ?tunnelArn:??? -> ?status:??? -> ?description:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TunnelId.t | `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