Interface PivotTableFieldCollapseStateTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PivotTableFieldCollapseStateTarget.Builder,PivotTableFieldCollapseStateTarget>,SdkBuilder<PivotTableFieldCollapseStateTarget.Builder,PivotTableFieldCollapseStateTarget>,SdkPojo
- Enclosing class:
- PivotTableFieldCollapseStateTarget
public static interface PivotTableFieldCollapseStateTarget.Builder extends SdkPojo, CopyableBuilder<PivotTableFieldCollapseStateTarget.Builder,PivotTableFieldCollapseStateTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PivotTableFieldCollapseStateTarget.BuilderfieldDataPathValues(Collection<DataPathValue> fieldDataPathValues)The data path of the pivot table's header.PivotTableFieldCollapseStateTarget.BuilderfieldDataPathValues(Consumer<DataPathValue.Builder>... fieldDataPathValues)The data path of the pivot table's header.PivotTableFieldCollapseStateTarget.BuilderfieldDataPathValues(DataPathValue... fieldDataPathValues)The data path of the pivot table's header.PivotTableFieldCollapseStateTarget.BuilderfieldId(String fieldId)The field ID of the pivot table that the collapse state needs to be set to.-
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
-
fieldId
PivotTableFieldCollapseStateTarget.Builder fieldId(String fieldId)
The field ID of the pivot table that the collapse state needs to be set to.
- Parameters:
fieldId- The field ID of the pivot table that the collapse state needs to be set to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldDataPathValues
PivotTableFieldCollapseStateTarget.Builder fieldDataPathValues(Collection<DataPathValue> fieldDataPathValues)
The data path of the pivot table's header. Used to set the collapse state.
- Parameters:
fieldDataPathValues- The data path of the pivot table's header. Used to set the collapse state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldDataPathValues
PivotTableFieldCollapseStateTarget.Builder fieldDataPathValues(DataPathValue... fieldDataPathValues)
The data path of the pivot table's header. Used to set the collapse state.
- Parameters:
fieldDataPathValues- The data path of the pivot table's header. Used to set the collapse state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldDataPathValues
PivotTableFieldCollapseStateTarget.Builder fieldDataPathValues(Consumer<DataPathValue.Builder>... fieldDataPathValues)
The data path of the pivot table's header. Used to set the collapse state.
This is a convenience method that creates an instance of theDataPathValue.Builderavoiding the need to create one manually viaDataPathValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#fieldDataPathValues(List.) - Parameters:
fieldDataPathValues- 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:
#fieldDataPathValues(java.util.Collection)
-
-