Module EC2.VPCEndpoint

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

type properties = {
  1. private_dns_enabled : bool option;
  2. vpc_id : string;
  3. route_table_ids : string list option;
  4. service_name : string;
  5. policy_document : Yojson.Safe.t option;
  6. vpc_endpoint_type : string option;
  7. security_group_ids : string list option;
  8. subnet_ids : string list option;
}

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

val make_properties : ?private_dns_enabled:bool -> vpc_id:string -> ?route_table_ids:string list -> service_name:string -> ?policy_document:Yojson.Safe.t -> ?vpc_endpoint_type:string -> ?security_group_ids:string list -> ?subnet_ids:string list -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. creation_timestamp : string;
  3. network_interface_ids : string list;
  4. id : string;
  5. dns_entries : string list;
}
val create_attributes : string -> attributes
val cloudformation_type : string