Interface PivotTableDataPathOption.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PivotTableDataPathOption.Builder,PivotTableDataPathOption>
,SdkBuilder<PivotTableDataPathOption.Builder,PivotTableDataPathOption>
,SdkPojo
- Enclosing class:
- PivotTableDataPathOption
public static interface PivotTableDataPathOption.Builder extends SdkPojo, CopyableBuilder<PivotTableDataPathOption.Builder,PivotTableDataPathOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PivotTableDataPathOption.Builder
dataPathList(Collection<DataPathValue> dataPathList)
The list of data path values for the data path options.PivotTableDataPathOption.Builder
dataPathList(Consumer<DataPathValue.Builder>... dataPathList)
The list of data path values for the data path options.PivotTableDataPathOption.Builder
dataPathList(DataPathValue... dataPathList)
The list of data path values for the data path options.PivotTableDataPathOption.Builder
width(String width)
The width of the data path option.-
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
-
dataPathList
PivotTableDataPathOption.Builder dataPathList(Collection<DataPathValue> dataPathList)
The list of data path values for the data path options.
- Parameters:
dataPathList
- The list of data path values for the data path options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataPathList
PivotTableDataPathOption.Builder dataPathList(DataPathValue... dataPathList)
The list of data path values for the data path options.
- Parameters:
dataPathList
- The list of data path values for the data path options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataPathList
PivotTableDataPathOption.Builder dataPathList(Consumer<DataPathValue.Builder>... dataPathList)
The list of data path values for the data path options.
This is a convenience method that creates an instance of theDataPathValue.Builder
avoiding the need to create one manually viaDataPathValue.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#dataPathList(List
.) - Parameters:
dataPathList
- a consumer that will call methods onDataPathValue.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dataPathList(java.util.Collection
)
-
width
PivotTableDataPathOption.Builder width(String width)
The width of the data path option.
- Parameters:
width
- The width of the data path option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-