package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. availability_zone : Aws.BaseTypes.String.t option;
  2. state : VpnState.t option;
  3. type_ : GatewayType.t option;
  4. vpc_attachments : VpcAttachmentList.t;
  5. vpn_gateway_id : Aws.BaseTypes.String.t option;
  6. amazon_side_asn : Aws.BaseTypes.Long.t option;
  7. 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