Class: Aws::Athena::Types::GetQueryResultsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::GetQueryResultsInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results (rows) to return in this request.
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
-
#query_execution_id ⇒ String
The unique ID of the query execution.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results (rows) to return in this request.
1447 1448 1449 1450 1451 1452 1453 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1447 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#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.
1447 1448 1449 1450 1451 1452 1453 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1447 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#query_execution_id ⇒ String
The unique ID of the query execution.
1447 1448 1449 1450 1451 1452 1453 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1447 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |