Module Values_1.GetMaintenanceWindowExecutionTaskInvocationResultSource

Retrieves information about a specific task running on a specific target.

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

    The maintenance window execution ID.

    *)
  2. taskExecutionId : Values_0.MaintenanceWindowExecutionTaskId.t option;
    (*

    The task execution ID.

    *)
  3. invocationId : Values_0.MaintenanceWindowExecutionTaskInvocationId.t option;
    (*

    The invocation ID.

    *)
  4. executionId : Values_0.MaintenanceWindowExecutionTaskExecutionId.t option;
    (*

    The execution ID.

    *)
  5. taskType : Values_0.MaintenanceWindowTaskType.t option;
    (*

    Retrieves the task type for a maintenance window.

    *)
  6. parameters : Values_0.MaintenanceWindowExecutionTaskInvocationParameters.t option;
    (*

    The parameters used at the time that the task ran.

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

    The task status for an invocation.

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

    The details explaining the status. Details are only available for certain status values.

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

    The time that the task started running on the target.

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

    The time that the task finished running on the target.

    *)
  11. ownerInformation : Values_0.OwnerInformation.t option;
    (*

    User-provided value to be included in any Amazon CloudWatch Events or Amazon EventBridge events raised while running tasks for these targets in this maintenance window.

    *)
  12. windowTargetId : Values_0.MaintenanceWindowTaskTargetId.t option;
    (*

    The maintenance window target ID.

    *)
}
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:??? -> ?taskExecutionId:??? -> ?invocationId:??? -> ?executionId:??? -> ?taskType:??? -> ?parameters:??? -> ?status:??? -> ?statusDetails:??? -> ?startTime:??? -> ?endTime:??? -> ?ownerInformation:??? -> ?windowTargetId:??? -> 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 | `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