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¶
athena_list_prepared_statements(WorkGroup, NextToken, MaxResults)
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   | 
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"
)
Request syntax¶
svc$list_prepared_statements(
  WorkGroup = "string",
  NextToken = "string",
  MaxResults = 123
)