package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. cidr_block : Aws.BaseTypes.String.t;
  2. dhcp_options_id : Aws.BaseTypes.String.t;
  3. state : VpcState.t;
  4. vpc_id : Aws.BaseTypes.String.t;
  5. owner_id : Aws.BaseTypes.String.t option;
  6. instance_tenancy : Tenancy.t;
  7. ipv6_cidr_block_association_set : VpcIpv6CidrBlockAssociationSet.t;
  8. cidr_block_association_set : VpcCidrBlockAssociationSet.t;
  9. is_default : Aws.BaseTypes.Boolean.t;
  10. tags : TagList.t;
}
val make : cidr_block:Aws.BaseTypes.String.t -> dhcp_options_id:Aws.BaseTypes.String.t -> state:VpcState.t -> vpc_id:Aws.BaseTypes.String.t -> ?owner_id:Aws.BaseTypes.String.t -> instance_tenancy:Tenancy.t -> ?ipv6_cidr_block_association_set:VpcIpv6CidrBlockAssociationSet.t -> ?cidr_block_association_set:VpcCidrBlockAssociationSet.t -> is_default:Aws.BaseTypes.Boolean.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