Class: Aws::Honeycode::Types::ListTablesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::ListTablesResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Provides the pagination token to load the next page if there are more results matching the request.
-
#tables ⇒ Array<Types::Table>
The list of tables in the workbook.
-
#workbook_cursor ⇒ Integer
Indicates the cursor of the workbook at which the data returned by this request is read.
Instance Attribute Details
#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.
1145 1146 1147 1148 1149 1150 1151 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1145 class ListTablesResult < Struct.new( :tables, :next_token, :workbook_cursor) SENSITIVE = [] include Aws::Structure end |
#tables ⇒ Array<Types::Table>
The list of tables in the workbook.
1145 1146 1147 1148 1149 1150 1151 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1145 class ListTablesResult < Struct.new( :tables, :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.
1145 1146 1147 1148 1149 1150 1151 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1145 class ListTablesResult < Struct.new( :tables, :next_token, :workbook_cursor) SENSITIVE = [] include Aws::Structure end |