Class: Aws::Athena::Types::ResultSet

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

Overview

The metadata and rows that make up a query result set. The metadata describes the column structure and data types. To return a ‘ResultSet` object, use GetQueryResults.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#result_set_metadataTypes::ResultSetMetadata

The metadata that describes the column structure and data types of a table of query results.



3787
3788
3789
3790
3791
3792
# File 'lib/aws-sdk-athena/types.rb', line 3787

class ResultSet < Struct.new(
  :rows,
  :result_set_metadata)
  SENSITIVE = []
  include Aws::Structure
end

#rowsArray<Types::Row>

The rows in the table.

Returns:



3787
3788
3789
3790
3791
3792
# File 'lib/aws-sdk-athena/types.rb', line 3787

class ResultSet < Struct.new(
  :rows,
  :result_set_metadata)
  SENSITIVE = []
  include Aws::Structure
end