Interface ColumnDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ColumnDefinition.Builder,ColumnDefinition>,SdkBuilder<ColumnDefinition.Builder,ColumnDefinition>,SdkPojo
- Enclosing class:
- ColumnDefinition
public static interface ColumnDefinition.Builder extends SdkPojo, CopyableBuilder<ColumnDefinition.Builder,ColumnDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnDefinition.Buildername(String name)The name of the column.ColumnDefinition.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, sdkFields
-
-
-
-
Method Detail
-
name
ColumnDefinition.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
ColumnDefinition.Builder type(String type)
The data type of the column. For a list of available data types, see Data types in the Amazon Keyspaces Developer Guide.
- Parameters:
type- The data type of the column. For a list of available data types, see Data types in the Amazon Keyspaces Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-