Interface InputColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputColumn.Builder,InputColumn>,SdkBuilder<InputColumn.Builder,InputColumn>,SdkPojo
- Enclosing class:
- InputColumn
@Mutable @NotThreadSafe public static interface InputColumn.Builder extends SdkPojo, CopyableBuilder<InputColumn.Builder,InputColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputColumn.Buildername(String name)The name of this column in the underlying data source.InputColumn.BuildersubType(String subType)The sub data type of the column.InputColumn.BuildersubType(ColumnDataSubType subType)The sub data type of the column.InputColumn.Buildertype(String type)The data type of the column.InputColumn.Buildertype(InputColumnDataType 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
InputColumn.Builder name(String name)
The name of this column in the underlying data source.
- Parameters:
name- The name of this column in the underlying data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
InputColumn.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.
- See Also:
InputColumnDataType,InputColumnDataType
-
type
InputColumn.Builder type(InputColumnDataType 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.
- See Also:
InputColumnDataType,InputColumnDataType
-
subType
InputColumn.Builder subType(String subType)
The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.
- Parameters:
subType- The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ColumnDataSubType,ColumnDataSubType
-
subType
InputColumn.Builder subType(ColumnDataSubType subType)
The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.
- Parameters:
subType- The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ColumnDataSubType,ColumnDataSubType
-
-