Interface Column.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Column.Builder,Column>,SdkBuilder<Column.Builder,Column>,SdkPojo
- Enclosing class:
- Column
public static interface Column.Builder extends SdkPojo, CopyableBuilder<Column.Builder,Column>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Column.Buildercomment(String comment)Optional information about the column.Column.Buildername(String name)The name of the column.Column.Buildertype(String type)The data type of the column.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
Column.Builder name(String name)
The name of the column.
- Parameters:
name- The name of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Column.Builder type(String type)
The data type of the column.
- Parameters:
type- The data type of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
Column.Builder comment(String comment)
Optional information about the column.
- Parameters:
comment- Optional information about the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-