Module EC2.VPC

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. instance_tenancy : string option;
  2. ipv4_netmask_length : int option;
  3. cidr_block : string option;
  4. ipv4_ipam_pool_id : string option;
  5. enable_dns_support : bool option;
  6. enable_dns_hostnames : bool option;
  7. tags : tag list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html;

val make_properties : ?instance_tenancy:string -> ?ipv4_netmask_length:int -> ?cidr_block:string -> ?ipv4_ipam_pool_id:string -> ?enable_dns_support:bool -> ?enable_dns_hostnames:bool -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. vpc_id : string;
  3. cidr_block_associations : string list;
  4. cidr_block : string;
  5. default_network_acl : string;
  6. ipv6_cidr_blocks : string list;
  7. default_security_group : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string