Class: Aws::IoTSiteWise::Types::GetQueryResultsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::GetQueryResultsResponse
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Contains the response for the GetQueryResults operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_info ⇒ Array<Types::ColumnInformation>
A list of column metadata for the query results.
-
#next_token ⇒ String
The token for the next set of results, or null if there are no additional results.
-
#rows ⇒ Array<Array<String>>
The result rows.
Instance Attribute Details
#column_info ⇒ Array<Types::ColumnInformation>
A list of column metadata for the query results. Each entry contains the column name and data type. Present when the query status is COMPLETED.
9868 9869 9870 9871 9872 9873 9874 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9868 class GetQueryResultsResponse < Struct.new( :column_info, :rows, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results, or null if there are no additional results.
9868 9869 9870 9871 9872 9873 9874 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9868 class GetQueryResultsResponse < Struct.new( :column_info, :rows, :next_token) SENSITIVE = [] include Aws::Structure end |
#rows ⇒ Array<Array<String>>
The result rows. Each row is a list of string column values, positional to match the columnInfo order. Present when the query status is COMPLETED.
9868 9869 9870 9871 9872 9873 9874 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9868 class GetQueryResultsResponse < Struct.new( :column_info, :rows, :next_token) SENSITIVE = [] include Aws::Structure end |