Interface ColumnConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ColumnConfiguration.Builder,ColumnConfiguration>,SdkBuilder<ColumnConfiguration.Builder,ColumnConfiguration>,SdkPojo
- Enclosing class:
- ColumnConfiguration
@Mutable @NotThreadSafe public static interface ColumnConfiguration.Builder extends SdkPojo, CopyableBuilder<ColumnConfiguration.Builder,ColumnConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ColumnConfiguration.BuildercolorsConfiguration(Consumer<ColorsConfiguration.Builder> colorsConfiguration)The color configurations of the column.ColumnConfiguration.BuildercolorsConfiguration(ColorsConfiguration colorsConfiguration)The color configurations of the column.default ColumnConfiguration.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The column.ColumnConfiguration.Buildercolumn(ColumnIdentifier column)The column.default ColumnConfiguration.BuilderformatConfiguration(Consumer<FormatConfiguration.Builder> formatConfiguration)The format configuration of a column.ColumnConfiguration.BuilderformatConfiguration(FormatConfiguration formatConfiguration)The format configuration of a column.ColumnConfiguration.Builderrole(String role)The role of the column.ColumnConfiguration.Builderrole(ColumnRole role)The role 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
-
column
ColumnConfiguration.Builder column(ColumnIdentifier column)
The column.
- Parameters:
column- The column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default ColumnConfiguration.Builder column(Consumer<ColumnIdentifier.Builder> column)
The column.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnIdentifier).- Parameters:
column- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnIdentifier)
-
formatConfiguration
ColumnConfiguration.Builder formatConfiguration(FormatConfiguration formatConfiguration)
The format configuration of a column.
- Parameters:
formatConfiguration- The format configuration of a column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
default ColumnConfiguration.Builder formatConfiguration(Consumer<FormatConfiguration.Builder> formatConfiguration)
The format configuration of a column.
This is a convenience method that creates an instance of theFormatConfiguration.Builderavoiding the need to create one manually viaFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toformatConfiguration(FormatConfiguration).- Parameters:
formatConfiguration- a consumer that will call methods onFormatConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
formatConfiguration(FormatConfiguration)
-
role
ColumnConfiguration.Builder role(String role)
The role of the column.
- Parameters:
role- The role of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ColumnRole,ColumnRole
-
role
ColumnConfiguration.Builder role(ColumnRole role)
The role of the column.
- Parameters:
role- The role of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ColumnRole,ColumnRole
-
colorsConfiguration
ColumnConfiguration.Builder colorsConfiguration(ColorsConfiguration colorsConfiguration)
The color configurations of the column.
- Parameters:
colorsConfiguration- The color configurations of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colorsConfiguration
default ColumnConfiguration.Builder colorsConfiguration(Consumer<ColorsConfiguration.Builder> colorsConfiguration)
The color configurations of the column.
This is a convenience method that creates an instance of theColorsConfiguration.Builderavoiding the need to create one manually viaColorsConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolorsConfiguration(ColorsConfiguration).- Parameters:
colorsConfiguration- a consumer that will call methods onColorsConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
colorsConfiguration(ColorsConfiguration)
-
-