Module Values_0.FirewallStatelessRuleSource

Describes a stateless rule.

Sourcetype nonrec t = {
  1. ruleGroupArn : ResourceArn.t option;
    (*

    The ARN of the stateless rule group.

    *)
  2. sources : ValueStringList.t option;
    (*

    The source IP addresses, in CIDR notation.

    *)
  3. destinations : ValueStringList.t option;
    (*

    The destination IP addresses, in CIDR notation.

    *)
  4. sourcePorts : PortRangeList.t option;
    (*

    The source ports.

    *)
  5. destinationPorts : PortRangeList.t option;
    (*

    The destination ports.

    *)
  6. protocols : ProtocolIntList.t option;
    (*

    The protocols.

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

    The rule action. The possible values are pass, drop, and forward_to_site.

    *)
  8. priority : Priority.t option;
    (*

    The rule priority.

    *)
}
Sourceval make : ?ruleGroupArn:??? -> ?sources:??? -> ?destinations:??? -> ?sourcePorts:??? -> ?destinationPorts:??? -> ?protocols:??? -> ?ruleAction:??? -> ?priority:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Priority.t | `List of [> `Integer of ProtocolInt.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list ] list | `String of ResourceArn.t ]) 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