Interface ValueColumnConfiguration.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ValueColumnConfiguration.Builder,,ValueColumnConfiguration> SdkBuilder<ValueColumnConfiguration.Builder,,ValueColumnConfiguration> SdkPojo
- Enclosing class:
ValueColumnConfiguration
@Mutable
@NotThreadSafe
public static interface ValueColumnConfiguration.Builder
extends SdkPojo, CopyableBuilder<ValueColumnConfiguration.Builder,ValueColumnConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondefault ValueColumnConfiguration.BuilderaggregationFunction(Consumer<DataPrepAggregationFunction.Builder> aggregationFunction) The aggregation function to apply when multiple values map to the same pivoted cell.aggregationFunction(DataPrepAggregationFunction aggregationFunction) The aggregation function to apply when multiple values map to the same pivoted cell.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
aggregationFunction
ValueColumnConfiguration.Builder aggregationFunction(DataPrepAggregationFunction aggregationFunction) The aggregation function to apply when multiple values map to the same pivoted cell.
- Parameters:
aggregationFunction- The aggregation function to apply when multiple values map to the same pivoted cell.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aggregationFunction
default ValueColumnConfiguration.Builder aggregationFunction(Consumer<DataPrepAggregationFunction.Builder> aggregationFunction) The aggregation function to apply when multiple values map to the same pivoted cell.
This is a convenience method that creates an instance of theDataPrepAggregationFunction.Builderavoiding the need to create one manually viaDataPrepAggregationFunction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaggregationFunction(DataPrepAggregationFunction).- Parameters:
aggregationFunction- a consumer that will call methods onDataPrepAggregationFunction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-