Module Values_0.MaintenanceWindowExecutionTaskInvocationIdentitySource

Describes the information about a task invocation for a particular target as part of a task execution performed as part of a maintenance window execution.

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

    The ID of the maintenance window execution that ran the task.

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

    The ID of the specific task execution in the maintenance window execution.

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

    The ID of the task invocation.

    *)
  4. 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.

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

    The task type.

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

    The parameters that were provided for the invocation when it was run.

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

    The status of the task invocation.

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

    The details explaining the status of the task invocation. Not available for all status values.

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

    The time the invocation started.

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

    The time the invocation finished.

    *)
  11. 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.

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

    The ID of the target definition in this maintenance window the invocation was performed for.

    *)
}
Sourceval make : ?windowExecutionId:??? -> ?taskExecutionId:??? -> ?invocationId:??? -> ?executionId:??? -> ?taskType:??? -> ?parameters:??? -> ?status:??? -> ?statusDetails:??? -> ?startTime:??? -> ?endTime:??? -> ?ownerInformation:??? -> ?windowTargetId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MaintenanceWindowExecutionId.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