Interface TableColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableColumn.Builder,TableColumn>,SdkBuilder<TableColumn.Builder,TableColumn>,SdkPojo
- Enclosing class:
- TableColumn
public static interface TableColumn.Builder extends SdkPojo, CopyableBuilder<TableColumn.Builder,TableColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableColumn.Builderformat(String format)The column level format that is applied in the table.TableColumn.Builderformat(Format format)The column level format that is applied in the table.TableColumn.BuildertableColumnId(String tableColumnId)The id of the column in the table.TableColumn.BuildertableColumnName(String tableColumnName)The name of the column in the table.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
tableColumnId
TableColumn.Builder tableColumnId(String tableColumnId)
The id of the column in the table.
- Parameters:
tableColumnId- The id of the column in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableColumnName
TableColumn.Builder tableColumnName(String tableColumnName)
The name of the column in the table.
- Parameters:
tableColumnName- The name of the column in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
TableColumn.Builder format(String format)
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'.
-
format
TableColumn.Builder format(Format format)
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'.
-
-