Class: Aws::Athena::Types::ListPreparedStatementsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListPreparedStatementsOutput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
-
#prepared_statements ⇒ Array<Types::PreparedStatementSummary>
The list of prepared statements for the workgroup.
Instance Attribute Details
#next_token ⇒ String
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.
2761 2762 2763 2764 2765 2766 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2761 class ListPreparedStatementsOutput < Struct.new( :prepared_statements, :next_token) SENSITIVE = [] include Aws::Structure end |
#prepared_statements ⇒ Array<Types::PreparedStatementSummary>
The list of prepared statements for the workgroup.
2761 2762 2763 2764 2765 2766 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2761 class ListPreparedStatementsOutput < Struct.new( :prepared_statements, :next_token) SENSITIVE = [] include Aws::Structure end |