Module Values.RuleUpdateSource

Describes a rule update.

Sourcetype nonrec t = {
  1. ruleIdentifier : RuleIdentifier.t;
    (*

    The ID or ARN of the rule.

    *)
  2. match_ : RuleMatch.t option;
    (*

    The rule match.

    *)
  3. priority : RulePriority.t option;
    (*

    The rule priority. A listener can't have multiple rules with the same priority.

    *)
  4. action : RuleAction.t option;
    (*

    The rule action.

    *)
}
Sourceval context_ : string
Sourceval make : ?match_:??? -> ?priority:??? -> ?action:??? -> ruleIdentifier:RuleIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RulePriority.t | `String of RuleIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Integer of HttpStatusCode.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of TargetGroupWeight.t | `String of HeaderMatchName.t | `Structure of (string * [> `String of HeaderMatchExact.t ]) list ]) list ] list | `String of HttpMethod.t | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `String of PathMatchExact.t ]) 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