Module Values.VirtualGatewaySource

Information about a virtual private gateway for a private virtual interface.

Sourcetype nonrec t = {
  1. virtualGatewayId : VirtualGatewayId.t option;
    (*

    The ID of the virtual private gateway.

    *)
  2. virtualGatewayState : VirtualGatewayState.t option;
    (*

    The state of the virtual private gateway. The following are the possible values: pending: Initial state after creating the virtual private gateway. available: Ready for use by a private virtual interface. deleting: Initial state after deleting the virtual private gateway. deleted: The virtual private gateway is deleted. The private virtual interface is unable to send traffic over this gateway.

    *)
}
Sourceval make : ?virtualGatewayId:??? -> ?virtualGatewayState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of VirtualGatewayId.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