Module Values_1.DebugRuleEvaluationStatusSource

Information about the status of the rule evaluation.

Sourcetype nonrec t = {
  1. ruleConfigurationName : RuleConfigurationName.t option;
    (*

    The name of the rule configuration.

    *)
  2. ruleEvaluationJobArn : ProcessingJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the rule evaluation job.

    *)
  3. ruleEvaluationStatus : RuleEvaluationStatus.t option;
    (*

    Status of the rule evaluation.

    *)
  4. statusDetails : StatusDetails.t option;
    (*

    Details from the rule evaluation.

    *)
  5. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    Timestamp when the rule evaluation status was last modified.

    *)
}
Sourceval make : ?ruleConfigurationName:??? -> ?ruleEvaluationJobArn:??? -> ?ruleEvaluationStatus:??? -> ?statusDetails:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RuleConfigurationName.t | `Timestamp of Values_0.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