Module Values.RuleUpdateSuccessSource

Describes a successful rule update.

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

    The Amazon Resource Name (ARN) of the listener.

    *)
  2. id : RuleId.t option;
    (*

    The ID of the listener.

    *)
  3. name : RuleName.t option;
    (*

    The name of the listener.

    *)
  4. isDefault : Boolean.t option;
    (*

    Indicates whether this is the default rule.

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

    The rule match.

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

    The rule priority.

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

    The action for the rule.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?isDefault:??? -> ?match_:??? -> ?priority:??? -> ?action:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of RulePriority.t | `String of RuleArn.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