CloudTrail / Client / get_query_results
get_query_results¶
- CloudTrail.Client.get_query_results(**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.
Gets event data results of a query. You must specify the
QueryIDvalue returned by theStartQueryoperation.See also: AWS API Documentation
Request Syntax
response = client.get_query_results( EventDataStore='string', QueryId='string', NextToken='string', MaxQueryResults=123, EventDataStoreOwnerAccountId='string' )
- Parameters:
EventDataStore (string) – The ARN (or ID suffix of the ARN) of the event data store against which the query was run.
QueryId (string) –
[REQUIRED]
The ID of the query for which you want to get results.
NextToken (string) – A token you can use to get the next page of query results.
MaxQueryResults (integer) – The maximum number of query results to display on a single page.
EventDataStoreOwnerAccountId (string) – The account ID of the event data store owner.
- Return type:
dict
- Returns:
Response Syntax
{ 'QueryStatus': 'QUEUED'|'RUNNING'|'FINISHED'|'FAILED'|'CANCELLED'|'TIMED_OUT', 'QueryStatistics': { 'ResultsCount': 123, 'TotalResultsCount': 123, 'BytesScanned': 123 }, 'QueryResultRows': [ [ { 'string': 'string' }, ], ], 'NextToken': 'string', 'ErrorMessage': 'string' }
Response Structure
(dict) –
QueryStatus (string) –
The status of the query. Values include
QUEUED,RUNNING,FINISHED,FAILED,TIMED_OUT, orCANCELLED.QueryStatistics (dict) –
Shows the count of query results.
ResultsCount (integer) –
The number of results returned.
TotalResultsCount (integer) –
The total number of results returned by a query.
BytesScanned (integer) –
The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.
QueryResultRows (list) –
Contains the individual event results of the query.
(list) –
(dict) –
(string) –
(string) –
NextToken (string) –
A token you can use to get the next page of query results.
ErrorMessage (string) –
The error message returned if a query failed.
Exceptions
CloudTrail.Client.exceptions.EventDataStoreARNInvalidExceptionCloudTrail.Client.exceptions.EventDataStoreNotFoundExceptionCloudTrail.Client.exceptions.InactiveEventDataStoreExceptionCloudTrail.Client.exceptions.InsufficientEncryptionPolicyExceptionCloudTrail.Client.exceptions.NoManagementAccountSLRExistsException