Module Types.VpnGateway

type t = {
availability_zone : Aws.BaseTypes.String.t option;
state : VpnState.t option;
type_ : GatewayType.t option;
vpc_attachments : VpcAttachmentList.t;
vpn_gateway_id : Aws.BaseTypes.String.t option;
amazon_side_asn : Aws.BaseTypes.Long.t option;
tags : TagList.t;
}
val make : ?⁠availability_zone:Aws.BaseTypes.String.t -> ?⁠state:VpnState.t -> ?⁠type_:GatewayType.t -> ?⁠vpc_attachments:VpcAttachmentList.t -> ?⁠vpn_gateway_id:Aws.BaseTypes.String.t -> ?⁠amazon_side_asn:Aws.BaseTypes.Long.t -> ?⁠tags:TagList.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t