Interface InputColumn.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<InputColumn.Builder,InputColumn>
,SdkBuilder<InputColumn.Builder,InputColumn>
,SdkPojo
- Enclosing class:
- InputColumn
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.Builder
name(String name)
The name of this column in the underlying data source.InputColumn.Builder
subType(String subType)
The sub data type of the column.InputColumn.Builder
subType(ColumnDataSubType subType)
The sub data type of the column.InputColumn.Builder
type(String type)
The data type of the column.InputColumn.Builder
type(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, 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
-
-