List Prepared Statements
athena_list_prepared_statements | R Documentation |
Lists the prepared statements in the specified workgroup¶
Description¶
Lists the prepared statements in the specified workgroup.
Usage¶
Arguments¶
WorkGroup
[required] The workgroup to list the prepared statements for.
NextToken
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the
NextToken
from the response object of the previous page call.MaxResults
The maximum number of results to return in this request.
Value¶
A list with the following syntax:
list(
PreparedStatements = list(
list(
StatementName = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)