Class: Aws::Honeycode::Types::ListTableColumnsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::ListTableColumnsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
This parameter is optional.
-
#table_id ⇒ String
The ID of the table whose columns are being retrieved.
-
#workbook_id ⇒ String
The ID of the workbook that contains the table whose columns are being retrieved.
Instance Attribute Details
#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.
974 975 976 977 978 979 980 |
# File 'lib/aws-sdk-honeycode/types.rb', line 974 class ListTableColumnsRequest < Struct.new( :workbook_id, :table_id, :next_token) SENSITIVE = [] include Aws::Structure end |
#table_id ⇒ String
The ID of the table whose columns are being retrieved.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
974 975 976 977 978 979 980 |
# File 'lib/aws-sdk-honeycode/types.rb', line 974 class ListTableColumnsRequest < Struct.new( :workbook_id, :table_id, :next_token) SENSITIVE = [] include Aws::Structure end |
#workbook_id ⇒ String
The ID of the workbook that contains the table whose columns are being retrieved.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
974 975 976 977 978 979 980 |
# File 'lib/aws-sdk-honeycode/types.rb', line 974 class ListTableColumnsRequest < Struct.new( :workbook_id, :table_id, :next_token) SENSITIVE = [] include Aws::Structure end |