Interface WaterfallChartSortConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<WaterfallChartSortConfiguration.Builder,
,WaterfallChartSortConfiguration> SdkBuilder<WaterfallChartSortConfiguration.Builder,
,WaterfallChartSortConfiguration> SdkPojo
- Enclosing class:
WaterfallChartSortConfiguration
public static interface WaterfallChartSortConfiguration.Builder
extends SdkPojo, CopyableBuilder<WaterfallChartSortConfiguration.Builder,WaterfallChartSortConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionbreakdownItemsLimit
(Consumer<ItemsLimitConfiguration.Builder> breakdownItemsLimit) The limit on the number of bar groups that are displayed.breakdownItemsLimit
(ItemsLimitConfiguration breakdownItemsLimit) The limit on the number of bar groups that are displayed.categorySort
(Collection<FieldSortOptions> categorySort) The sort configuration of the category fields.categorySort
(Consumer<FieldSortOptions.Builder>... categorySort) The sort configuration of the category fields.categorySort
(FieldSortOptions... categorySort) The sort configuration of the category fields.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
-
categorySort
The sort configuration of the category fields.
- Parameters:
categorySort
- The sort configuration of the category fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorySort
The sort configuration of the category fields.
- Parameters:
categorySort
- The sort configuration of the category fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorySort
WaterfallChartSortConfiguration.Builder categorySort(Consumer<FieldSortOptions.Builder>... categorySort) The sort configuration of the category fields.
This is a convenience method that creates an instance of theFieldSortOptions.Builder
avoiding the need to create one manually viaFieldSortOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocategorySort(List<FieldSortOptions>)
.- Parameters:
categorySort
- a consumer that will call methods onFieldSortOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
breakdownItemsLimit
WaterfallChartSortConfiguration.Builder breakdownItemsLimit(ItemsLimitConfiguration breakdownItemsLimit) The limit on the number of bar groups that are displayed.
- Parameters:
breakdownItemsLimit
- The limit on the number of bar groups that are displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
breakdownItemsLimit
default WaterfallChartSortConfiguration.Builder breakdownItemsLimit(Consumer<ItemsLimitConfiguration.Builder> breakdownItemsLimit) The limit on the number of bar groups that are displayed.
This is a convenience method that creates an instance of theItemsLimitConfiguration.Builder
avoiding the need to create one manually viaItemsLimitConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tobreakdownItemsLimit(ItemsLimitConfiguration)
.- Parameters:
breakdownItemsLimit
- a consumer that will call methods onItemsLimitConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-