Interface OutputColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutputColumn.Builder,OutputColumn>,SdkBuilder<OutputColumn.Builder,OutputColumn>,SdkPojo
- Enclosing class:
- OutputColumn
@Mutable @NotThreadSafe public static interface OutputColumn.Builder extends SdkPojo, CopyableBuilder<OutputColumn.Builder,OutputColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputColumn.Builderdescription(String description)A description for a column.OutputColumn.Buildername(String name)The display name of the column..OutputColumn.BuildersubType(String subType)The sub data type of the column.OutputColumn.BuildersubType(ColumnDataSubType subType)The sub data type of the column.OutputColumn.Buildertype(String type)The data type of the column.OutputColumn.Buildertype(ColumnDataType 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
OutputColumn.Builder name(String name)
The display name of the column..
- Parameters:
name- The display name of the column..- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
OutputColumn.Builder description(String description)
A description for a column.
- Parameters:
description- A description for a column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
OutputColumn.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:
ColumnDataType,ColumnDataType
-
type
OutputColumn.Builder type(ColumnDataType 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:
ColumnDataType,ColumnDataType
-
subType
OutputColumn.Builder subType(String subType)
The sub data type of the column.
- Parameters:
subType- The sub data type of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ColumnDataSubType,ColumnDataSubType
-
subType
OutputColumn.Builder subType(ColumnDataSubType subType)
The sub data type of the column.
- Parameters:
subType- The sub data type of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ColumnDataSubType,ColumnDataSubType
-
-