Values.ConfigurationCheckOperationSourceRepresents a configuration check operation that has been executed against an application.
type nonrec t = {id : OperationId.t option;The unique identifier of the configuration check operation.
*)applicationId : ApplicationId.t option;The ID of the application against which the configuration check was performed.
*)status : OperationStatus.t option;The current status of the configuration check operation.
*)statusMessage : String_.t option;A message providing additional details about the status of the configuration check operation.
*)configurationCheckId : ConfigurationCheckType.t option;The unique identifier of the configuration check that was performed.
*)configurationCheckName : String_.t option;The name of the configuration check that was performed.
*)configurationCheckDescription : String_.t option;A description of the configuration check that was performed.
*)startTime : Timestamp.t option;The time at which the configuration check operation started.
*)endTime : Timestamp.t option;The time at which the configuration check operation completed.
*)ruleStatusCounts : RuleStatusCounts.t option;A summary of all the rule results, showing counts for each status type.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of OperationId.t
| `Structure of (string * [> `Integer of Integer.t ]) list
| `Timestamp of Timestamp.t ])
list ]