Module Values_0.AnalysisAclRuleSource

Describes a network access control (ACL) rule.

Sourcetype nonrec t = {
  1. cidr : String_.t option;
    (*

    The IPv4 address range, in CIDR notation.

    *)
  2. egress : Boolean.t option;
    (*

    Indicates whether the rule is an outbound rule.

    *)
  3. portRange : PortRange.t option;
    (*

    The range of ports.

    *)
  4. protocol : String_.t option;
    (*

    The protocol.

    *)
  5. ruleAction : String_.t option;
    (*

    Indicates whether to allow or deny traffic that matches the rule.

    *)
  6. ruleNumber : Integer.t option;
    (*

    The rule number.

    *)
}
Sourceval make : ?cidr:??? -> ?egress:??? -> ?portRange:??? -> ?protocol:??? -> ?ruleAction:??? -> ?ruleNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t