Module Values.RuleSource

Information about a rule.

Sourcetype nonrec t = {
  1. ruleArn : RuleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the rule.

    *)
  2. priority : String_.t option;
    (*

    The priority.

    *)
  3. conditions : RuleConditionList.t option;
    (*

    The conditions. Each rule can include zero or one of the following conditions: http-request-method, host-header, path-pattern, and source-ip, and zero or more of the following conditions: http-header and query-string.

    *)
  4. actions : Actions.t option;
    (*

    The actions. Each rule must include exactly one of the following types of actions: forward, redirect, or fixed-response, and it must be the last action to be performed.

    *)
  5. isDefault : IsDefault.t option;
    (*

    Indicates whether this is the default rule.

    *)
  6. transforms : RuleTransformList.t option;
    (*

    The transforms for the rule.

    *)
}
Sourceval make : ?ruleArn:??? -> ?priority:??? -> ?conditions:??? -> ?actions:??? -> ?isDefault:??? -> ?transforms:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsDefault.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of ActionOrder.t | `List of [> `String of StringValue.t ] list | `String of ConditionFieldName.t | `Structure of (string * [> `Boolean of AuthenticateOidcActionUseExistingClientSecret.t | `Enum of string | `List of [> `String of StringValue.t | `Structure of (string * [> `Enum of string | `Integer of TargetGroupWeight.t | `List of [> `String of JwtValidationActionAdditionalClaimValue.t ] list | `String of StringValue.t ]) list ] list | `Long of AuthenticateOidcActionSessionTimeout.t | `Map of ([> `String of AuthenticateOidcActionAuthenticationRequestParamName.t ] * [> `String of AuthenticateOidcActionAuthenticationRequestParamValue.t ]) list | `String of HttpHeaderConditionName.t | `Structure of (string * [> `Boolean of TargetGroupStickinessEnabled.t | `Integer of TargetGroupStickinessDurationSeconds.t ]) list ]) list ]) list ] list | `String of RuleArn.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