Class: Aws::Honeycode::Types::ListTablesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::ListTablesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of tables to return in each page of the results.
-
#next_token ⇒ String
This parameter is optional.
-
#workbook_id ⇒ String
The ID of the workbook whose tables are being retrieved.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of tables to return in each page of the results.
1118 1119 1120 1121 1122 1123 1124 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1118 class ListTablesRequest < Struct.new( :workbook_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
This parameter is optional. If a nextToken is not specified, the API returns the first page of data.
Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.
1118 1119 1120 1121 1122 1123 1124 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1118 class ListTablesRequest < Struct.new( :workbook_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#workbook_id ⇒ String
The ID of the workbook whose tables are being retrieved.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
1118 1119 1120 1121 1122 1123 1124 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1118 class ListTablesRequest < Struct.new( :workbook_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |