Module Values_1.GetMaintenanceWindowExecutionResultSource

Retrieves details about a specific a maintenance window execution.

Sourcetype nonrec t = {
  1. windowExecutionId : Values_0.MaintenanceWindowExecutionId.t option;
    (*

    The ID of the maintenance window execution.

    *)
  2. taskIds : MaintenanceWindowExecutionTaskIdList.t option;
    (*

    The ID of the task executions from the maintenance window execution.

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

    The status of the maintenance window execution.

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

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

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

    The time the maintenance window started running.

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

    The time the maintenance window finished running.

    *)
}
Sourcetype nonrec error = [
  1. | `DoesNotExistException of Values_0.DoesNotExistException.t
  2. | `InternalServerError of Values_0.InternalServerError.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?windowExecutionId:??? -> ?taskIds:??? -> ?status:??? -> ?statusDetails:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DoesNotExistException of Values_0.DoesNotExistException.t | `InternalServerError of Values_0.InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DoesNotExistException of Values_0.DoesNotExistException.t | `InternalServerError of Values_0.InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Values_0.MaintenanceWindowExecutionTaskId.t ] list | `String of Values_0.MaintenanceWindowExecutionId.t | `Timestamp of Values_0.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