EC2.Route
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html
type properties = {
destination_ipv6_cidr_block : string option;
route_table_id : string;
instance_id : string option;
local_gateway_id : string option;
carrier_gateway_id : string option;
destination_cidr_block : string option;
gateway_id : string option;
network_interface_id : string option;
vpc_endpoint_id : string option;
core_network_arn : string option;
transit_gateway_id : string option;
vpc_peering_connection_id : string option;
egress_only_internet_gateway_id : string option;
destination_prefix_list_id : string option;
nat_gateway_id : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-route.html;
val make_properties :
?destination_ipv6_cidr_block:string ->
route_table_id:string ->
?instance_id:string ->
?local_gateway_id:string ->
?carrier_gateway_id:string ->
?destination_cidr_block:string ->
?gateway_id:string ->
?network_interface_id:string ->
?vpc_endpoint_id:string ->
?core_network_arn:string ->
?transit_gateway_id:string ->
?vpc_peering_connection_id:string ->
?egress_only_internet_gateway_id:string ->
?destination_prefix_list_id:string ->
?nat_gateway_id:string ->
unit ->
properties
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes