Get Prepared Statement
athena_get_prepared_statement | R Documentation |
Retrieves the prepared statement with the specified name from the specified workgroup¶
Description¶
Retrieves the prepared statement with the specified name from the specified workgroup.
Usage¶
athena_get_prepared_statement(StatementName, WorkGroup)
Arguments¶
StatementName |
[required] The name of the prepared statement to retrieve. |
WorkGroup |
[required] The workgroup to which the statement to be retrieved belongs. |
Value¶
A list with the following syntax:
list(
PreparedStatement = list(
StatementName = "string",
QueryStatement = "string",
WorkGroupName = "string",
Description = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$get_prepared_statement(
StatementName = "string",
WorkGroup = "string"
)