Module Values.FirewallPolicyDetailsSource

Defines the behavior of the firewall.

Sourcetype nonrec t = {
  1. statefulRuleGroupReferences : FirewallPolicyStatefulRuleGroupReferencesList.t option;
    (*

    The stateful rule groups that are used in the firewall policy.

    *)
  2. statelessCustomActions : FirewallPolicyStatelessCustomActionsList.t option;
    (*

    The custom action definitions that are available to use in the firewall policy's StatelessDefaultActions setting.

    *)
  3. statelessDefaultActions : NonEmptyStringList.t option;
    (*

    The actions to take on a packet if it doesn't match any of the stateless rules in the policy. You must specify a standard action (aws:pass, aws:drop, aws:forward_to_sfe), and can optionally include a custom action from StatelessCustomActions.

    *)
  4. statelessFragmentDefaultActions : NonEmptyStringList.t option;
    (*

    The actions to take on a fragmented UDP packet if it doesn't match any of the stateless rules in the policy. You must specify a standard action (aws:pass, aws:drop, aws:forward_to_sfe), and can optionally include a custom action from StatelessCustomActions.

    *)
  5. statelessRuleGroupReferences : FirewallPolicyStatelessRuleGroupReferencesList.t option;
    (*

    The stateless rule groups that are used in the firewall policy.

    *)
}
Sourceval make : ?statefulRuleGroupReferences:??? -> ?statelessCustomActions:??? -> ?statelessDefaultActions:??? -> ?statelessFragmentDefaultActions:??? -> ?statelessRuleGroupReferences:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list ]) list ]) 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