Values_0.DescribeMaintenanceWindowExecutionsRequestSourceLists the executions of a maintenance window. This includes information about when the maintenance window was scheduled to be active, and information about tasks registered and run with the maintenance window.
type nonrec t = {windowId : MaintenanceWindowId.t;The ID of the maintenance window whose executions should be retrieved.
*)filters : MaintenanceWindowFilterList.t option;Each entry in the array is a structure containing: Key. A string between 1 and 128 characters. Supported keys include ExecutedBefore and ExecutedAfter. Values. An array of strings, each between 1 and 256 characters. Supported values are date/time strings in a valid ISO 8601 date/time format, such as 2024-11-04T05:00:00Z.
*)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.
*)nextToken : NextToken.t option;The token for the next set of items to return. (You received this token from a previous call.)
*)}val make :
?filters:??? ->
?maxResults:??? ->
?nextToken:??? ->
windowId:MaintenanceWindowId.t ->
unit ->
tval 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 MaintenanceWindowId.t ])
list ]