Class: Aws::Athena::Types::GetQueryResultsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::GetQueryResultsOutput
- 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.
-
#result_set ⇒ Types::ResultSet
The results of the query execution.
-
#update_count ⇒ Integer
The number of rows inserted with a
CREATE TABLE AS SELECT
,INSERT INTO
, orUPDATE
statement.
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.
1922 1923 1924 1925 1926 1927 1928 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1922 class GetQueryResultsOutput < Struct.new( :update_count, :result_set, :next_token) SENSITIVE = [] include Aws::Structure end |
#result_set ⇒ Types::ResultSet
The results of the query execution.
1922 1923 1924 1925 1926 1927 1928 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1922 class GetQueryResultsOutput < Struct.new( :update_count, :result_set, :next_token) SENSITIVE = [] include Aws::Structure end |
#update_count ⇒ Integer
The number of rows inserted with a CREATE TABLE AS SELECT
, INSERT
INTO
, or UPDATE
statement.
1922 1923 1924 1925 1926 1927 1928 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1922 class GetQueryResultsOutput < Struct.new( :update_count, :result_set, :next_token) SENSITIVE = [] include Aws::Structure end |