Module Types.NetworkAclEntry
type t={cidr_block : Aws.BaseTypes.String.t option;egress : Aws.BaseTypes.Boolean.t option;icmp_type_code : IcmpTypeCode.t option;ipv6_cidr_block : Aws.BaseTypes.String.t option;port_range : PortRange.t option;protocol : Aws.BaseTypes.String.t option;rule_action : RuleAction.t option;rule_number : Aws.BaseTypes.Integer.t option;}
val make : ?cidr_block:Aws.BaseTypes.String.t -> ?egress:Aws.BaseTypes.Boolean.t -> ?icmp_type_code:IcmpTypeCode.t -> ?ipv6_cidr_block:Aws.BaseTypes.String.t -> ?port_range:PortRange.t -> ?protocol:Aws.BaseTypes.String.t -> ?rule_action:RuleAction.t -> ?rule_number:Aws.BaseTypes.Integer.t -> unit -> tval parse : Ezxmlm.nodes -> t optionval to_query : t -> Aws.Query.tval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]val of_json : Aws.Json.t -> t