Module Values_0.DescribeMaintenanceWindowExecutionTaskInvocationsRequestSource

Retrieves the individual task executions (one per target) for a particular task run as part of a maintenance window execution.

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

    The ID of the maintenance window execution the task is part of.

    *)
  2. taskId : MaintenanceWindowExecutionTaskId.t;
    (*

    The ID of the specific task in the maintenance window task that should be retrieved.

    *)
  3. filters : MaintenanceWindowFilterList.t option;
    (*

    Optional filters used to scope down the returned task invocations. The supported filter key is STATUS with the corresponding values PENDING, IN_PROGRESS, SUCCESS, FAILED, TIMED_OUT, CANCELLING, and CANCELLED.

    *)
  4. maxResults : MaintenanceWindowMaxResults.t option;
    (*

    The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

    *)
  5. nextToken : NextToken.t option;
    (*

    The token for the next set of items to return. (You received this token from a previous call.)

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> windowExecutionId:MaintenanceWindowExecutionId.t -> taskId:MaintenanceWindowExecutionTaskId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaintenanceWindowMaxResults.t | `List of [> `Structure of (string * [> `List of [> `String of MaintenanceWindowFilterValue.t ] list | `String of MaintenanceWindowFilterKey.t ]) list ] list | `String of MaintenanceWindowExecutionId.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