Class: Aws::Honeycode::Types::QueryTableRowsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::QueryTableRowsResult
- Defined in:
- gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_ids ⇒ Array<String>
The list of columns in the table whose row data is returned in the result.
-
#next_token ⇒ String
Provides the pagination token to load the next page if there are more results matching the request.
-
#rows ⇒ Array<Types::TableRow>
The list of rows in the table that match the query filter.
-
#workbook_cursor ⇒ Integer
Indicates the cursor of the workbook at which the data returned by this request is read.
Instance Attribute Details
#column_ids ⇒ Array<String>
The list of columns in the table whose row data is returned in the result.
1416 1417 1418 1419 1420 1421 1422 1423 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1416 class QueryTableRowsResult < Struct.new( :column_ids, :rows, :next_token, :workbook_cursor) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
1416 1417 1418 1419 1420 1421 1422 1423 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1416 class QueryTableRowsResult < Struct.new( :column_ids, :rows, :next_token, :workbook_cursor) SENSITIVE = [] include Aws::Structure end |
#rows ⇒ Array<Types::TableRow>
The list of rows in the table that match the query filter.
1416 1417 1418 1419 1420 1421 1422 1423 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1416 class QueryTableRowsResult < Struct.new( :column_ids, :rows, :next_token, :workbook_cursor) SENSITIVE = [] include Aws::Structure end |
#workbook_cursor ⇒ Integer
Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
1416 1417 1418 1419 1420 1421 1422 1423 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1416 class QueryTableRowsResult < Struct.new( :column_ids, :rows, :next_token, :workbook_cursor) SENSITIVE = [] include Aws::Structure end |