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