Module EC2.SecurityGroupEgress

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

type properties = {
  1. cidr_ip : string option;
  2. cidr_ipv6 : string option;
  3. description : string option;
  4. from_port : int option;
  5. to_port : int option;
  6. ip_protocol : string;
  7. destination_security_group_id : string option;
  8. destination_prefix_list_id : string option;
  9. group_id : string;
}

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

val make_properties : ?cidr_ip:string -> ?cidr_ipv6:string -> ?description:string -> ?from_port:int -> ?to_port:int -> ip_protocol:string -> ?destination_security_group_id:string -> ?destination_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