Module Values.CancelQueryRequestSource

Cancels a query if the query is not in a terminated state, such as CANCELLED, FAILED, TIMED_OUT, or FINISHED. You must specify an ARN value for EventDataStore. The ID of the query that you want to cancel is also required. When you run CancelQuery, the query status might show as CANCELLED even if the operation is not yet finished.

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 is running.

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

    The ID of the query that you want to cancel. The QueryId comes from the response of a StartQuery operation.

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

    The account ID of the event data store owner.

    *)
}
Sourceval context_ : string
Sourceval make : ?eventDataStore:??? -> ?eventDataStoreOwnerAccountId:??? -> queryId:UUID.t -> 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