Module Values_0.MaintenanceWindowExecutionSource

Describes the information about an execution of a maintenance window.

Sourcetype nonrec t = {
  1. windowId : MaintenanceWindowId.t option;
    (*

    The ID of the maintenance window.

    *)
  2. windowExecutionId : MaintenanceWindowExecutionId.t option;
    (*

    The ID of the maintenance window execution.

    *)
  3. status : MaintenanceWindowExecutionStatus.t option;
    (*

    The status of the execution.

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

    The details explaining the status. Not available for all status values.

    *)
  5. startTime : DateTime.t option;
    (*

    The time the execution started.

    *)
  6. endTime : DateTime.t option;
    (*

    The time the execution finished.

    *)
}
Sourceval make : ?windowId:??? -> ?windowExecutionId:??? -> ?status:??? -> ?statusDetails:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MaintenanceWindowId.t | `Timestamp of DateTime.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