Interface PivotTableSortBy.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PivotTableSortBy.Builder,PivotTableSortBy>,SdkBuilder<PivotTableSortBy.Builder,PivotTableSortBy>,SdkPojo
- Enclosing class:
- PivotTableSortBy
public static interface PivotTableSortBy.Builder extends SdkPojo, CopyableBuilder<PivotTableSortBy.Builder,PivotTableSortBy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PivotTableSortBy.Buildercolumn(Consumer<ColumnSort.Builder> column)The column sort (field id, direction) for the pivot table sort by options.PivotTableSortBy.Buildercolumn(ColumnSort column)The column sort (field id, direction) for the pivot table sort by options.default PivotTableSortBy.BuilderdataPath(Consumer<DataPathSort.Builder> dataPath)The data path sort (data path value, direction) for the pivot table sort by options.PivotTableSortBy.BuilderdataPath(DataPathSort dataPath)The data path sort (data path value, direction) for the pivot table sort by options.default PivotTableSortBy.Builderfield(Consumer<FieldSort.Builder> field)The field sort (field id, direction) for the pivot table sort by options.PivotTableSortBy.Builderfield(FieldSort field)The field sort (field id, direction) for the pivot table sort by options.-
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
-
field
PivotTableSortBy.Builder field(FieldSort field)
The field sort (field id, direction) for the pivot table sort by options.
- Parameters:
field- The field sort (field id, direction) for the pivot table sort by options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
field
default PivotTableSortBy.Builder field(Consumer<FieldSort.Builder> field)
The field sort (field id, direction) for the pivot table sort by options.
This is a convenience method that creates an instance of theFieldSort.Builderavoiding the need to create one manually viaFieldSort.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofield(FieldSort).- Parameters:
field- a consumer that will call methods onFieldSort.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
field(FieldSort)
-
column
PivotTableSortBy.Builder column(ColumnSort column)
The column sort (field id, direction) for the pivot table sort by options.
- Parameters:
column- The column sort (field id, direction) for the pivot table sort by options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default PivotTableSortBy.Builder column(Consumer<ColumnSort.Builder> column)
The column sort (field id, direction) for the pivot table sort by options.
This is a convenience method that creates an instance of theColumnSort.Builderavoiding the need to create one manually viaColumnSort.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnSort).- Parameters:
column- a consumer that will call methods onColumnSort.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnSort)
-
dataPath
PivotTableSortBy.Builder dataPath(DataPathSort dataPath)
The data path sort (data path value, direction) for the pivot table sort by options.
- Parameters:
dataPath- The data path sort (data path value, direction) for the pivot table sort by options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataPath
default PivotTableSortBy.Builder dataPath(Consumer<DataPathSort.Builder> dataPath)
The data path sort (data path value, direction) for the pivot table sort by options.
This is a convenience method that creates an instance of theDataPathSort.Builderavoiding the need to create one manually viaDataPathSort.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todataPath(DataPathSort).- Parameters:
dataPath- a consumer that will call methods onDataPathSort.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dataPath(DataPathSort)
-
-