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.
-
#query_result_type ⇒ String
When you set this to
DATA_ROWSor empty,GetQueryResultsreturns the query results in rows.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results (rows) to return in this request.
1962 1963 1964 1965 1966 1967 1968 1969 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1962 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results, :query_result_type) 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.
1962 1963 1964 1965 1966 1967 1968 1969 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1962 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results, :query_result_type) SENSITIVE = [] include Aws::Structure end |
#query_execution_id ⇒ String
The unique ID of the query execution.
1962 1963 1964 1965 1966 1967 1968 1969 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1962 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results, :query_result_type) SENSITIVE = [] include Aws::Structure end |
#query_result_type ⇒ String
When you set this to DATA_ROWS or empty, GetQueryResults returns
the query results in rows. If set to DATA_MANIFEST, it returns the
manifest file in rows. Only the query types CREATE TABLE AS
SELECT, UNLOAD, and INSERT can generate a manifest file. If you
use DATA_MANIFEST for other query types, the query will fail.
1962 1963 1964 1965 1966 1967 1968 1969 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1962 class GetQueryResultsInput < Struct.new( :query_execution_id, :next_token, :max_results, :query_result_type) SENSITIVE = [] include Aws::Structure end |