Interface ColumnConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ColumnConfiguration.Builder,
,ColumnConfiguration> SdkBuilder<ColumnConfiguration.Builder,
,ColumnConfiguration> SdkPojo
- Enclosing class:
ColumnConfiguration
public static interface ColumnConfiguration.Builder
extends SdkPojo, CopyableBuilder<ColumnConfiguration.Builder,ColumnConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondefault ColumnConfiguration.Builder
colorsConfiguration
(Consumer<ColorsConfiguration.Builder> colorsConfiguration) The color configurations of the column.colorsConfiguration
(ColorsConfiguration colorsConfiguration) The color configurations of the column.default ColumnConfiguration.Builder
column
(Consumer<ColumnIdentifier.Builder> column) The column.column
(ColumnIdentifier column) The column.default ColumnConfiguration.Builder
formatConfiguration
(Consumer<FormatConfiguration.Builder> formatConfiguration) The format configuration of a column.formatConfiguration
(FormatConfiguration formatConfiguration) The format configuration of a column.The role of the column.role
(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, sdkFields
-
Method Details
-
column
The column.
- Parameters:
column
- The column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
The column.
This is a convenience method that creates an instance of theColumnIdentifier.Builder
avoiding the need to create one manually viaColumnIdentifier.builder()
.When the
Consumer
completes,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:
-
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.Builder
avoiding the need to create one manually viaFormatConfiguration.builder()
.When the
Consumer
completes,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:
-
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:
-
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:
-
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.Builder
avoiding the need to create one manually viaColorsConfiguration.builder()
.When the
Consumer
completes,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:
-