Class: Aws::Athena::Types::GetQueryResultsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-athena/types.rb

Overview

Note:

When making an API call, you may pass GetQueryResultsInput data as a hash:

{
  query_execution_id: "QueryExecutionId", # required
  next_token: "Token",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results (rows) to return in this request.

Returns:

  • (Integer)


354
355
356
357
358
359
# File 'lib/aws-sdk-athena/types.rb', line 354

class GetQueryResultsInput < Struct.new(
  :query_execution_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

The token that specifies where to start pagination if a previous request was truncated.

Returns:

  • (String)


354
355
356
357
358
359
# File 'lib/aws-sdk-athena/types.rb', line 354

class GetQueryResultsInput < Struct.new(
  :query_execution_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#query_execution_idString

The unique ID of the query execution.

Returns:

  • (String)


354
355
356
357
358
359
# File 'lib/aws-sdk-athena/types.rb', line 354

class GetQueryResultsInput < Struct.new(
  :query_execution_id,
  :next_token,
  :max_results)
  include Aws::Structure
end