Interface KPISortConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<KPISortConfiguration.Builder,KPISortConfiguration>
,SdkBuilder<KPISortConfiguration.Builder,KPISortConfiguration>
,SdkPojo
- Enclosing class:
- KPISortConfiguration
public static interface KPISortConfiguration.Builder extends SdkPojo, CopyableBuilder<KPISortConfiguration.Builder,KPISortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KPISortConfiguration.Builder
trendGroupSort(Collection<FieldSortOptions> trendGroupSort)
The sort configuration of the trend group fields.KPISortConfiguration.Builder
trendGroupSort(Consumer<FieldSortOptions.Builder>... trendGroupSort)
The sort configuration of the trend group fields.KPISortConfiguration.Builder
trendGroupSort(FieldSortOptions... trendGroupSort)
The sort configuration of the trend group 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
-
trendGroupSort
KPISortConfiguration.Builder trendGroupSort(Collection<FieldSortOptions> trendGroupSort)
The sort configuration of the trend group fields.
- Parameters:
trendGroupSort
- The sort configuration of the trend group fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trendGroupSort
KPISortConfiguration.Builder trendGroupSort(FieldSortOptions... trendGroupSort)
The sort configuration of the trend group fields.
- Parameters:
trendGroupSort
- The sort configuration of the trend group fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trendGroupSort
KPISortConfiguration.Builder trendGroupSort(Consumer<FieldSortOptions.Builder>... trendGroupSort)
The sort configuration of the trend group 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#trendGroupSort(List
.) - Parameters:
trendGroupSort
- 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:
#trendGroupSort(java.util.Collection
)
-
-