CloudTrail / Client / cancel_query

cancel_query

CloudTrail.Client.cancel_query(**kwargs)

Warning

CloudTrail Lake will no longer be open to new customers starting May 31, 2026. If you would like to use CloudTrail Lake, sign up prior to that date. Existing customers can continue to use the service as normal. For more information, see CloudTrail Lake availability change.

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.

See also: AWS API Documentation

Request Syntax

response = client.cancel_query(
    EventDataStore='string',
    QueryId='string',
    EventDataStoreOwnerAccountId='string'
)
Parameters:
  • EventDataStore (string) – The ARN (or the ID suffix of the ARN) of an event data store on which the specified query is running.

  • QueryId (string) –

    [REQUIRED]

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

  • EventDataStoreOwnerAccountId (string) – The account ID of the event data store owner.

Return type:

dict

Returns:

Response Syntax

{
    'QueryId': 'string',
    'QueryStatus': 'QUEUED'|'RUNNING'|'FINISHED'|'FAILED'|'CANCELLED'|'TIMED_OUT',
    'EventDataStoreOwnerAccountId': 'string'
}

Response Structure

  • (dict) –

    • QueryId (string) –

      The ID of the canceled query.

    • QueryStatus (string) –

      Shows the status of a query after a CancelQuery request. Typically, the values shown are either RUNNING or CANCELLED.

    • EventDataStoreOwnerAccountId (string) –

      The account ID of the event data store owner.

Exceptions