Interface FunnelChartSortConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FunnelChartSortConfiguration.Builder,FunnelChartSortConfiguration>
,SdkBuilder<FunnelChartSortConfiguration.Builder,FunnelChartSortConfiguration>
,SdkPojo
- Enclosing class:
- FunnelChartSortConfiguration
public static interface FunnelChartSortConfiguration.Builder extends SdkPojo, CopyableBuilder<FunnelChartSortConfiguration.Builder,FunnelChartSortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FunnelChartSortConfiguration.Builder
categoryItemsLimit(Consumer<ItemsLimitConfiguration.Builder> categoryItemsLimit)
The limit on the number of categories displayed.FunnelChartSortConfiguration.Builder
categoryItemsLimit(ItemsLimitConfiguration categoryItemsLimit)
The limit on the number of categories displayed.FunnelChartSortConfiguration.Builder
categorySort(Collection<FieldSortOptions> categorySort)
The sort configuration of the category fields.FunnelChartSortConfiguration.Builder
categorySort(Consumer<FieldSortOptions.Builder>... categorySort)
The sort configuration of the category fields.FunnelChartSortConfiguration.Builder
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 Detail
-
categorySort
FunnelChartSortConfiguration.Builder categorySort(Collection<FieldSortOptions> 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
FunnelChartSortConfiguration.Builder categorySort(FieldSortOptions... 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
FunnelChartSortConfiguration.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 to#categorySort(List
.) - 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:
#categorySort(java.util.Collection
)
-
categoryItemsLimit
FunnelChartSortConfiguration.Builder categoryItemsLimit(ItemsLimitConfiguration categoryItemsLimit)
The limit on the number of categories displayed.
- Parameters:
categoryItemsLimit
- The limit on the number of categories displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoryItemsLimit
default FunnelChartSortConfiguration.Builder categoryItemsLimit(Consumer<ItemsLimitConfiguration.Builder> categoryItemsLimit)
The limit on the number of categories 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 tocategoryItemsLimit(ItemsLimitConfiguration)
.- Parameters:
categoryItemsLimit
- 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:
categoryItemsLimit(ItemsLimitConfiguration)
-
-