Values_0.MaintenanceWindowExecutionSourceDescribes the information about an execution of a maintenance window.
type nonrec t = {windowId : MaintenanceWindowId.t option;The ID of the maintenance window.
*)windowExecutionId : MaintenanceWindowExecutionId.t option;The ID of the maintenance window execution.
*)status : MaintenanceWindowExecutionStatus.t option;The status of the execution.
*)statusDetails : MaintenanceWindowExecutionStatusDetails.t option;The details explaining the status. Not available for all status values.
*)startTime : DateTime.t option;The time the execution started.
*)endTime : DateTime.t option;The time the execution finished.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of MaintenanceWindowId.t
| `Timestamp of DateTime.t ])
list ]