Class: Aws::Athena::Types::ResultSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ResultSet
- 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
-
#result_set_metadata ⇒ Types::ResultSetMetadata
The metadata that describes the column structure and data types of a table of query results.
-
#rows ⇒ Array<Types::Row>
The rows in the table.
Instance Attribute Details
#result_set_metadata ⇒ Types::ResultSetMetadata
The metadata that describes the column structure and data types of a table of query results.
3777 3778 3779 3780 3781 3782 |
# File 'lib/aws-sdk-athena/types.rb', line 3777 class ResultSet < Struct.new( :rows, :result_set_metadata) SENSITIVE = [] include Aws::Structure end |
#rows ⇒ Array<Types::Row>
The rows in the table.
3777 3778 3779 3780 3781 3782 |
# File 'lib/aws-sdk-athena/types.rb', line 3777 class ResultSet < Struct.new( :rows, :result_set_metadata) SENSITIVE = [] include Aws::Structure end |