Module Values.GetScheduledQueryHistoryRequestSource

Retrieves the execution history of a scheduled query within a specified time range, including query results and destination processing status.

Sourcetype nonrec t = {
  1. identifier : ScheduledQueryIdentifier.t;
    (*

    The ARN or name of the scheduled query to retrieve history for.

    *)
  2. startTime : Timestamp.t;
    (*

    The start time for the history query in Unix epoch format.

    *)
  3. endTime : Timestamp.t;
    (*

    The end time for the history query in Unix epoch format.

    *)
  4. executionStatuses : ExecutionStatusList.t option;
    (*

    An array of execution statuses to filter the history results. Only executions with the specified statuses are returned.

    *)
  5. maxResults : GetScheduledQueryHistoryMaxResults.t option;
    (*

    The maximum number of history records to return. Valid range is 1 to 1000.

    *)
  6. nextToken : NextToken.t option;
}
Sourceval context_ : string
Sourceval make : ?executionStatuses:??? -> ?maxResults:??? -> ?nextToken:??? -> identifier:ScheduledQueryIdentifier.t -> startTime:Timestamp.t -> endTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GetScheduledQueryHistoryMaxResults.t | `List of [> `Enum of string ] list | `Long of Timestamp.t | `String of ScheduledQueryIdentifier.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