Module Values.NetworkAclEntrySetSource

The configuration of the first and last rules for the network ACL policy, and the remediation settings for each.

Sourcetype nonrec t = {
  1. firstEntries : NetworkAclEntries.t option;
    (*

    The rules that you want to run first in the Firewall Manager managed network ACLs. Provide these in the order in which you want them to run. Firewall Manager will assign the specific rule numbers for you, in the network ACLs that it creates. You must specify at least one first entry or one last entry in any network ACL policy.

    *)
  2. forceRemediateForFirstEntries : BooleanObject.t;
    (*

    Applies only when remediation is enabled for the policy as a whole. Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If forced remediation is disabled, Firewall Manager marks the network ACL as noncompliant and does not try to remediate. For more information about the remediation behavior, see Remediation for managed network ACLs in the Firewall Manager Developer Guide.

    *)
  3. lastEntries : NetworkAclEntries.t option;
    (*

    The rules that you want to run last in the Firewall Manager managed network ACLs. Provide these in the order in which you want them to run. Firewall Manager will assign the specific rule numbers for you, in the network ACLs that it creates. You must specify at least one first entry or one last entry in any network ACL policy.

    *)
  4. forceRemediateForLastEntries : BooleanObject.t;
    (*

    Applies only when remediation is enabled for the policy as a whole. Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If forced remediation is disabled, Firewall Manager marks the network ACL as noncompliant and does not try to remediate. For more information about the remediation behavior, see Remediation for managed network ACLs in the Firewall Manager Developer Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?firstEntries:??? -> ?lastEntries:??? -> forceRemediateForFirstEntries:BooleanObject.t -> forceRemediateForLastEntries:BooleanObject.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `List of [> `Structure of (string * [> `Boolean of BooleanObject.t | `Enum of string | `String of LengthBoundedString.t | `Structure of (string * [> `Integer of IntegerObject.t ]) list ]) list ] 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