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