Module Values.EventRuleStatusSummarySource

Provides additional information about the current EventRule status.

Sourcetype nonrec t = {
  1. status : EventRuleStatus.t option;
    (*

    The status of the EventRule. Values: ACTIVE The EventRule can process events. INACTIVE The EventRule may be unable to process events. CREATING The EventRule is being created. Only GET and LIST calls can be run. UPDATING The EventRule is being updated. Only GET and LIST calls can be run. DELETING The EventRule is being deleted. Only GET and LIST calls can be run.

    *)
  2. reason : EventRuleStatusReason.t option;
    (*

    A human-readable reason for EventRuleStatus.

    *)
}
Sourceval make : ?status:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EventRuleStatusReason.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