Class: Aws::IoTSiteWise::Types::GetQueryResultsResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#column_infoArray<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.

Returns:



9822
9823
9824
9825
9826
9827
9828
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9822

class GetQueryResultsResponse < Struct.new(
  :column_info,
  :rows,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The token for the next set of results, or null if there are no additional results.

Returns:

  • (String)


9822
9823
9824
9825
9826
9827
9828
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9822

class GetQueryResultsResponse < Struct.new(
  :column_info,
  :rows,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#rowsArray<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.

Returns:

  • (Array<Array<String>>)


9822
9823
9824
9825
9826
9827
9828
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9822

class GetQueryResultsResponse < Struct.new(
  :column_info,
  :rows,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end