Module Values_0.VgwTelemetrySource

Describes telemetry for a VPN tunnel.

Sourcetype nonrec t = {
  1. acceptedRouteCount : Integer.t option;
    (*

    The number of accepted routes.

    *)
  2. lastStatusChange : DateTime.t option;
    (*

    The date and time of the last change in status. This field is updated when changes in IKE (Phase 1), IPSec (Phase 2), or BGP status are detected.

    *)
  3. outsideIpAddress : String_.t option;
    (*

    The Internet-routable IP address of the virtual private gateway's outside interface.

    *)
  4. status : TelemetryStatus.t option;
    (*

    The status of the VPN tunnel.

    *)
  5. statusMessage : String_.t option;
    (*

    If an error occurs, a description of the error.

    *)
  6. certificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the VPN tunnel endpoint certificate.

    *)
}
Sourceval make : ?acceptedRouteCount:??? -> ?lastStatusChange:??? -> ?outsideIpAddress:??? -> ?status:??? -> ?statusMessage:??? -> ?certificateArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t | `Timestamp of DateTime.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