EC2.NatGateway
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
secondary_allocation_ids : string list option;
private_ip_address : string option;
connectivity_type : string option;
secondary_private_ip_addresses : string list option;
secondary_private_ip_address_count : int option;
allocation_id : string option;
subnet_id : string;
max_drain_duration_seconds : int option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html;
val make_properties :
?secondary_allocation_ids:string list ->
?private_ip_address:string ->
?connectivity_type:string ->
?secondary_private_ip_addresses:string list ->
?secondary_private_ip_address_count:int ->
?allocation_id:string ->
subnet_id:string ->
?tags:tag list ->
?max_drain_duration_seconds:int ->
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 ]
val create_attributes : string -> attributes