Module EC2.NetworkInterface

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

type private_ip_address_specification = {
  1. private_ip_address : string;
  2. primary : bool;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-privateipaddressspecification.html

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

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

and connection_tracking_specification = {
  1. udp_timeout : int option;
  2. tcp_established_timeout : int option;
  3. udp_stream_timeout : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-connectiontrackingspecification.html

and ipv6_prefix_specification = {
  1. ipv6_prefix : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-ipv6prefixspecification.html

and ipv4_prefix_specification = {
  1. ipv4_prefix : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-ipv4prefixspecification.html

and instance_ipv6_address = {
  1. ipv6_address : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-instanceipv6address.html

type properties = {
  1. description : string option;
  2. private_ip_address : string option;
  3. private_ip_addresses : private_ip_address_specification list option;
  4. secondary_private_ip_address_count : int option;
  5. ipv6_prefix_count : int option;
  6. ipv4_prefixes : ipv4_prefix_specification list option;
  7. ipv4_prefix_count : int option;
  8. group_set : string list option;
  9. ipv6_addresses : instance_ipv6_address list option;
  10. ipv6_prefixes : ipv6_prefix_specification list option;
  11. subnet_id : string;
  12. source_dest_check : bool option;
  13. interface_type : string option;
  14. ipv6_address_count : int option;
  15. tags : tag list option;
  16. connection_tracking_specification : connection_tracking_specification option;
}

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

val make_properties : ?description:string -> ?private_ip_address:string -> ?private_ip_addresses:private_ip_address_specification list -> ?secondary_private_ip_address_count:int -> ?ipv6_prefix_count:int -> ?ipv4_prefixes:ipv4_prefix_specification list -> ?ipv4_prefix_count:int -> ?group_set:string list -> ?ipv6_addresses:instance_ipv6_address list -> ?ipv6_prefixes:ipv6_prefix_specification list -> subnet_id:string -> ?source_dest_check:bool -> ?interface_type:string -> ?ipv6_address_count:int -> ?tags:tag list -> ?connection_tracking_specification:connection_tracking_specification -> unit -> properties
val make_private_ip_address_specification : private_ip_address:string -> primary:bool -> unit -> private_ip_address_specification
val make_tag : value:string -> key:string -> unit -> tag
val make_connection_tracking_specification : ?udp_timeout:int -> ?tcp_established_timeout:int -> ?udp_stream_timeout:int -> unit -> connection_tracking_specification
val make_ipv6_prefix_specification : ipv6_prefix:string -> unit -> ipv6_prefix_specification
val make_ipv4_prefix_specification : ipv4_prefix:string -> unit -> ipv4_prefix_specification
val make_instance_ipv6_address : ipv6_address:string -> unit -> instance_ipv6_address
val yojson_of_private_ip_address_specification : private_ip_address_specification -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_connection_tracking_specification : connection_tracking_specification -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_ipv6_prefix_specification : ipv6_prefix_specification -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_ipv4_prefix_specification : ipv4_prefix_specification -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_instance_ipv6_address : instance_ipv6_address -> [> `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. primary_ipv6_address : string;
  3. secondary_private_ip_addresses : string list;
  4. primary_private_ip_address : string;
  5. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string