Module Values.RuleSummarySource

Summary information about a listener rule.

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

    The Amazon Resource Name (ARN) of the rule.

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

    The ID of the rule.

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

    The name of the rule.

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

    Indicates whether this is the default listener rule.

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

    The priority of the rule.

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

    The date and time that the listener rule was created, in ISO-8601 format.

    *)
  7. lastUpdatedAt : Timestamp.t option;
    (*

    The date and time that the listener rule was last updated, in ISO-8601 format.

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