Module Values.LinkRoutingRuleSummarySource

Summary of a routing rule for list responses

Sourcetype nonrec t = {
  1. ruleId : RuleId.t option;
    (*

    The unique identifier of the routing rule.

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

    The priority of the routing rule.

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

    The conditions for the routing rule.

    *)
  4. status : RuleStatus.t option;
    (*

    The status of the routing rule.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The timestamp of when the routing rule was created.

    *)
  6. updatedAt : Timestamp.t option;
    (*

    The timestamp of when the routing rule was last updated.

    *)
}
Sourceval make : ?ruleId:??? -> ?priority:??? -> ?conditions:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RulePriority.t | `String of RuleId.t | `Structure of (string * [> `String of RuleConditionHostHeaderString.t | `Structure of (string * [> `String of QueryStringKeyValuePairKeyString.t ]) list ]) list | `Timestamp of Timestamp.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