Module Values.AwsEc2VpnConnectionVgwTelemetryDetailsSource

Information about the VPN tunnel.

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

    The number of accepted routes.

    *)
  2. certificateArn : NonEmptyString.t option;
    (*

    The ARN of the VPN tunnel endpoint certificate.

    *)
  3. lastStatusChange : NonEmptyString.t option;
    (*

    The date and time of the last change in status. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  4. outsideIpAddress : NonEmptyString.t option;
    (*

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

    *)
  5. status : NonEmptyString.t option;
    (*

    The status of the VPN tunnel. Valid values are DOWN or UP.

    *)
  6. statusMessage : NonEmptyString.t option;
    (*

    If an error occurs, a description of the error.

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