List Queries
| cloudtrail_list_queries | R Documentation |
Returns a list of queries and query statuses for the past seven days¶
Description¶
Returns a list of queries and query statuses for the past seven days.
You must specify an ARN value for EventDataStore. Optionally, to
shorten the list of results, you can specify a time range, formatted as
timestamps, by adding StartTime and EndTime parameters, and a
QueryStatus value. Valid values for QueryStatus include QUEUED,
RUNNING, FINISHED, FAILED, TIMED_OUT, or CANCELLED.
Usage¶
Arguments¶
EventDataStore[required] The ARN (or the ID suffix of the ARN) of an event data store on which queries were run.
NextTokenA token you can use to get the next page of results.
MaxResultsThe maximum number of queries to show on a page.
StartTimeUse with
EndTimeto bound alist_queriesrequest, and limit its results to only those queries run within a specified time period.EndTimeUse with
StartTimeto bound alist_queriesrequest, and limit its results to only those queries run within a specified time period.QueryStatusThe status of queries that you want to return in results. Valid values for
QueryStatusincludeQUEUED,RUNNING,FINISHED,FAILED,TIMED_OUT, orCANCELLED.
Value¶
A list with the following syntax:
list(
Queries = list(
list(
QueryId = "string",
QueryStatus = "QUEUED"|"RUNNING"|"FINISHED"|"FAILED"|"CANCELLED"|"TIMED_OUT",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)