Module Values.DescribeQueryRequestSource

Returns metadata about a query, including query run time in milliseconds, number of events scanned and matched, and query status. If the query results were delivered to an S3 bucket, the response also provides the S3 URI and the delivery status. You must specify either QueryId or QueryAlias. Specifying the QueryAlias parameter returns information about the last query run for the alias. You can provide RefreshId along with QueryAlias to view the query results of a dashboard query for the specified RefreshId.

Sourcetype nonrec t = {
  1. eventDataStore : EventDataStoreArn.t option;
    (*

    The ARN (or the ID suffix of the ARN) of an event data store on which the specified query was run.

    *)
  2. queryId : UUID.t option;
    (*

    The query ID.

    *)
  3. queryAlias : QueryAlias.t option;
    (*

    The alias that identifies a query template.

    *)
  4. refreshId : RefreshId.t option;
    (*

    The ID of the dashboard refresh.

    *)
  5. eventDataStoreOwnerAccountId : AccountId.t option;
    (*

    The account ID of the event data store owner.

    *)
}
Sourceval make : ?eventDataStore:??? -> ?queryId:??? -> ?queryAlias:??? -> ?refreshId:??? -> ?eventDataStoreOwnerAccountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EventDataStoreArn.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