Module Values_0.DescribeMaintenanceWindowScheduleRequestSource

Retrieves information about upcoming executions of a maintenance window.

Sourcetype nonrec t = {
  1. windowId : MaintenanceWindowId.t option;
    (*

    The ID of the maintenance window to retrieve information about.

    *)
  2. targets : Targets.t option;
    (*

    The managed node ID or key-value pair to retrieve information about.

    *)
  3. resourceType : MaintenanceWindowResourceType.t option;
    (*

    The type of resource you want to retrieve information about. For example, INSTANCE.

    *)
  4. filters : PatchOrchestratorFilterList.t option;
    (*

    Filters used to limit the range of results. For example, you can limit maintenance window executions to only those scheduled before or after a certain date and time.

    *)
  5. maxResults : MaintenanceWindowSearchMaxResults.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.

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

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

    *)
}
Sourceval make : ?windowId:??? -> ?targets:??? -> ?resourceType:??? -> ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaintenanceWindowSearchMaxResults.t | `List of [> `Structure of (string * [> `List of [> `String of TargetValue.t ] list | `String of TargetKey.t ]) list ] list | `String of MaintenanceWindowId.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