Interface ColumnType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ColumnType.Builder,ColumnType>,SdkBuilder<ColumnType.Builder,ColumnType>,SdkPojo
- Enclosing class:
- ColumnType
public static interface ColumnType.Builder extends SdkPojo, CopyableBuilder<ColumnType.Builder,ColumnType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnType.BuilderscalarType(String scalarType)The allowed data types that the column has as it's value.ColumnType.BuilderscalarType(ScalarType scalarType)The allowed data types that the column has as it's value.-
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
-
scalarType
ColumnType.Builder scalarType(String scalarType)
The allowed data types that the column has as it's value.
- Parameters:
scalarType- The allowed data types that the column has as it's value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScalarType,ScalarType
-
scalarType
ColumnType.Builder scalarType(ScalarType scalarType)
The allowed data types that the column has as it's value.
- Parameters:
scalarType- The allowed data types that the column has as it's value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScalarType,ScalarType
-
-