Values_0.MaintenanceWindowExecutionTaskInvocationIdentitySourceDescribes the information about a task invocation for a particular target as part of a task execution performed as part of a maintenance window execution.
type nonrec t = {windowExecutionId : MaintenanceWindowExecutionId.t option;The ID of the maintenance window execution that ran the task.
*)taskExecutionId : MaintenanceWindowExecutionTaskId.t option;The ID of the specific task execution in the maintenance window execution.
*)invocationId : MaintenanceWindowExecutionTaskInvocationId.t option;The ID of the task invocation.
*)executionId : MaintenanceWindowExecutionTaskExecutionId.t option;The ID of the action performed in the service that actually handled the task invocation. If the task type is RUN_COMMAND, this value is the command ID.
*)taskType : MaintenanceWindowTaskType.t option;The task type.
*)parameters : MaintenanceWindowExecutionTaskInvocationParameters.t option;The parameters that were provided for the invocation when it was run.
*)status : MaintenanceWindowExecutionStatus.t option;The status of the task invocation.
*)statusDetails : MaintenanceWindowExecutionStatusDetails.t option;The details explaining the status of the task invocation. Not available for all status values.
*)startTime : DateTime.t option;The time the invocation started.
*)endTime : DateTime.t option;The time the invocation finished.
*)ownerInformation : OwnerInformation.t option;User-provided value that was specified when the target was registered with the maintenance window. This was also included in any Amazon CloudWatch Events events raised during the task invocation.
*)windowTargetId : MaintenanceWindowTaskTargetId.t option;The ID of the target definition in this maintenance window the invocation was performed for.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of MaintenanceWindowExecutionId.t
| `Timestamp of DateTime.t ])
list ]