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 -> 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