Module EC2.SecurityGroupIngress

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

type properties = {
  1. group_name : string option;
  2. cidr_ip : string option;
  3. cidr_ipv6 : string option;
  4. description : string option;
  5. from_port : int option;
  6. source_security_group_name : string option;
  7. to_port : int option;
  8. source_security_group_owner_id : string option;
  9. ip_protocol : string;
  10. source_security_group_id : string option;
  11. source_prefix_list_id : string option;
  12. group_id : string option;
}

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

val make_properties : ?group_name:string -> ?cidr_ip:string -> ?cidr_ipv6:string -> ?description:string -> ?from_port:int -> ?source_security_group_name:string -> ?to_port:int -> ?source_security_group_owner_id:string -> ip_protocol:string -> ?source_security_group_id:string -> ?source_prefix_list_id:string -> ?group_id:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string