Interface AggregateOperation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AggregateOperation.Builder,AggregateOperation>,SdkBuilder<AggregateOperation.Builder,AggregateOperation>,SdkPojo
- Enclosing class:
- AggregateOperation
public static interface AggregateOperation.Builder extends SdkPojo, CopyableBuilder<AggregateOperation.Builder,AggregateOperation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregateOperation.BuilderaggFunc(String aggFunc)Specifies the aggregation function to apply.AggregateOperation.BuilderaggFunc(AggFunction aggFunc)Specifies the aggregation function to apply.AggregateOperation.Buildercolumn(String... column)Specifies the column on the data set on which the aggregation function will be applied.AggregateOperation.Buildercolumn(Collection<String> column)Specifies the column on the data set on which the aggregation function will be applied.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
column
AggregateOperation.Builder column(Collection<String> column)
Specifies the column on the data set on which the aggregation function will be applied.
- Parameters:
column- Specifies the column on the data set on which the aggregation function will be applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
AggregateOperation.Builder column(String... column)
Specifies the column on the data set on which the aggregation function will be applied.
- Parameters:
column- Specifies the column on the data set on which the aggregation function will be applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aggFunc
AggregateOperation.Builder aggFunc(String aggFunc)
Specifies the aggregation function to apply.
Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop
- Parameters:
aggFunc- Specifies the aggregation function to apply.Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AggFunction,AggFunction
-
aggFunc
AggregateOperation.Builder aggFunc(AggFunction aggFunc)
Specifies the aggregation function to apply.
Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop
- Parameters:
aggFunc- Specifies the aggregation function to apply.Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AggFunction,AggFunction
-
-