Module Types.IpPermission

type t = {
from_port : Aws.BaseTypes.Integer.t option;
ip_protocol : Aws.BaseTypes.String.t;
ip_ranges : IpRangeList.t;
ipv6_ranges : Ipv6RangeList.t;
prefix_list_ids : PrefixListIdList.t;
to_port : Aws.BaseTypes.Integer.t option;
user_id_group_pairs : UserIdGroupPairList.t;
}
val make : ?⁠from_port:Aws.BaseTypes.Integer.t -> ip_protocol:Aws.BaseTypes.String.t -> ?⁠ip_ranges:IpRangeList.t -> ?⁠ipv6_ranges:Ipv6RangeList.t -> ?⁠prefix_list_ids:PrefixListIdList.t -> ?⁠to_port:Aws.BaseTypes.Integer.t -> ?⁠user_id_group_pairs:UserIdGroupPairList.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t