Module Values.AwsEc2VpnConnectionDetailsSource

Details about an Amazon EC2 VPN connection.

Sourcetype nonrec t = {
  1. vpnConnectionId : NonEmptyString.t option;
    (*

    The identifier of the VPN connection.

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

    The current state of the VPN connection. Valid values are as follows: available deleted deleting pending

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

    The identifier of the customer gateway that is at your end of the VPN connection.

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

    The configuration information for the VPN connection's customer gateway, in the native XML format.

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

    The type of VPN connection.

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

    The identifier of the virtual private gateway that is at the Amazon Web Services side of the VPN connection.

    *)
  7. category : NonEmptyString.t option;
    (*

    The category of the VPN connection. VPN indicates an Amazon Web Services VPN connection. VPN-Classic indicates an Amazon Web Services Classic VPN connection.

    *)
  8. vgwTelemetry : AwsEc2VpnConnectionVgwTelemetryList.t option;
    (*

    Information about the VPN tunnel.

    *)
  9. options : AwsEc2VpnConnectionOptionsDetails.t option;
    (*

    The VPN connection options.

    *)
  10. routes : AwsEc2VpnConnectionRoutesList.t option;
    (*

    The static routes that are associated with the VPN connection.

    *)
  11. transitGatewayId : NonEmptyString.t option;
    (*

    The identifier of the transit gateway that is associated with the VPN connection.

    *)
}
Sourceval make : ?vpnConnectionId:??? -> ?state:??? -> ?customerGatewayId:??? -> ?customerGatewayConfiguration:??? -> ?type_:??? -> ?vpnGatewayId:??? -> ?category:??? -> ?vgwTelemetry:??? -> ?options:??? -> ?routes:??? -> ?transitGatewayId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Integer of Integer.t | `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) list ] list ]) 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