Class: Aws::Honeycode::Types::TableColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::TableColumn
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
An object that contains attributes about a single column in a table
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#format ⇒ String
The column level format that is applied in the table.
-
#table_column_id ⇒ String
The id of the column in the table.
-
#table_column_name ⇒ String
The name of the column in the table.
Instance Attribute Details
#format ⇒ String
The column level format that is applied in the table. An empty value in this field means that the column format is the default value ‘AUTO’.
1488 1489 1490 1491 1492 1493 1494 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1488 class TableColumn < Struct.new( :table_column_id, :table_column_name, :format) SENSITIVE = [] include Aws::Structure end |
#table_column_id ⇒ String
The id of the column in the table.
1488 1489 1490 1491 1492 1493 1494 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1488 class TableColumn < Struct.new( :table_column_id, :table_column_name, :format) SENSITIVE = [] include Aws::Structure end |
#table_column_name ⇒ String
The name of the column in the table.
1488 1489 1490 1491 1492 1493 1494 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1488 class TableColumn < Struct.new( :table_column_id, :table_column_name, :format) SENSITIVE = [] include Aws::Structure end |