Module EC2.NatGateway

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.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. secondary_allocation_ids : string list option;
  2. private_ip_address : string option;
  3. connectivity_type : string option;
  4. secondary_private_ip_addresses : string list option;
  5. secondary_private_ip_address_count : int option;
  6. allocation_id : string option;
  7. subnet_id : string;
  8. tags : tag list option;
  9. 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 ]
type attributes = {
  1. ref_ : string;
  2. nat_gateway_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string