Interface SankeyDiagramChartConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SankeyDiagramChartConfiguration.Builder,
,SankeyDiagramChartConfiguration> SdkBuilder<SankeyDiagramChartConfiguration.Builder,
,SankeyDiagramChartConfiguration> SdkPojo
- Enclosing class:
SankeyDiagramChartConfiguration
public static interface SankeyDiagramChartConfiguration.Builder
extends SdkPojo, CopyableBuilder<SankeyDiagramChartConfiguration.Builder,SankeyDiagramChartConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondataLabels
(Consumer<DataLabelOptions.Builder> dataLabels) The data label configuration of a sankey diagram.dataLabels
(DataLabelOptions dataLabels) The data label configuration of a sankey diagram.fieldWells
(Consumer<SankeyDiagramFieldWells.Builder> fieldWells) The field well configuration of a sankey diagram.fieldWells
(SankeyDiagramFieldWells fieldWells) The field well configuration of a sankey diagram.sortConfiguration
(Consumer<SankeyDiagramSortConfiguration.Builder> sortConfiguration) The sort configuration of a sankey diagram.sortConfiguration
(SankeyDiagramSortConfiguration sortConfiguration) The sort configuration of a sankey diagram.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
-
fieldWells
The field well configuration of a sankey diagram.
- Parameters:
fieldWells
- The field well configuration of a sankey diagram.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldWells
default SankeyDiagramChartConfiguration.Builder fieldWells(Consumer<SankeyDiagramFieldWells.Builder> fieldWells) The field well configuration of a sankey diagram.
This is a convenience method that creates an instance of theSankeyDiagramFieldWells.Builder
avoiding the need to create one manually viaSankeyDiagramFieldWells.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofieldWells(SankeyDiagramFieldWells)
.- Parameters:
fieldWells
- a consumer that will call methods onSankeyDiagramFieldWells.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
sortConfiguration
SankeyDiagramChartConfiguration.Builder sortConfiguration(SankeyDiagramSortConfiguration sortConfiguration) The sort configuration of a sankey diagram.
- Parameters:
sortConfiguration
- The sort configuration of a sankey diagram.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortConfiguration
default SankeyDiagramChartConfiguration.Builder sortConfiguration(Consumer<SankeyDiagramSortConfiguration.Builder> sortConfiguration) The sort configuration of a sankey diagram.
This is a convenience method that creates an instance of theSankeyDiagramSortConfiguration.Builder
avoiding the need to create one manually viaSankeyDiagramSortConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosortConfiguration(SankeyDiagramSortConfiguration)
.- Parameters:
sortConfiguration
- a consumer that will call methods onSankeyDiagramSortConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
dataLabels
The data label configuration of a sankey diagram.
- Parameters:
dataLabels
- The data label configuration of a sankey diagram.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataLabels
default SankeyDiagramChartConfiguration.Builder dataLabels(Consumer<DataLabelOptions.Builder> dataLabels) The data label configuration of a sankey diagram.
This is a convenience method that creates an instance of theDataLabelOptions.Builder
avoiding the need to create one manually viaDataLabelOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todataLabels(DataLabelOptions)
.- Parameters:
dataLabels
- a consumer that will call methods onDataLabelOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-