Values.RuleSummarySourceSummary information about a listener rule.
type nonrec t = {arn : RuleArn.t option;The Amazon Resource Name (ARN) of the rule.
*)id : RuleId.t option;The ID of the rule.
*)name : RuleName.t option;The name of the rule.
*)isDefault : Boolean.t option;Indicates whether this is the default listener rule.
*)priority : RulePriority.t option;The priority of the rule.
*)createdAt : Timestamp.t option;The date and time that the listener rule was created, in ISO-8601 format.
*)lastUpdatedAt : Timestamp.t option;The date and time that the listener rule was last updated, in ISO-8601 format.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of RulePriority.t
| `String of RuleArn.t
| `Timestamp of Timestamp.t ])
list ]