Interface ColumnStatisticsConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ColumnStatisticsConfiguration.Builder,ColumnStatisticsConfiguration>,SdkBuilder<ColumnStatisticsConfiguration.Builder,ColumnStatisticsConfiguration>,SdkPojo
- Enclosing class:
- ColumnStatisticsConfiguration
public static interface ColumnStatisticsConfiguration.Builder extends SdkPojo, CopyableBuilder<ColumnStatisticsConfiguration.Builder,ColumnStatisticsConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ColumnStatisticsConfiguration.Builderselectors(Collection<ColumnSelector> selectors)List of column selectors.ColumnStatisticsConfiguration.Builderselectors(Consumer<ColumnSelector.Builder>... selectors)List of column selectors.ColumnStatisticsConfiguration.Builderselectors(ColumnSelector... selectors)List of column selectors.default ColumnStatisticsConfiguration.Builderstatistics(Consumer<StatisticsConfiguration.Builder> statistics)Configuration for evaluations.ColumnStatisticsConfiguration.Builderstatistics(StatisticsConfiguration statistics)Configuration for evaluations.-
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
-
selectors
ColumnStatisticsConfiguration.Builder selectors(Collection<ColumnSelector> selectors)
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
- Parameters:
selectors- List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectors
ColumnStatisticsConfiguration.Builder selectors(ColumnSelector... selectors)
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
- Parameters:
selectors- List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectors
ColumnStatisticsConfiguration.Builder selectors(Consumer<ColumnSelector.Builder>... selectors)
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
This is a convenience method that creates an instance of theColumnSelector.Builderavoiding the need to create one manually viaColumnSelector.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#selectors(List.) - Parameters:
selectors- a consumer that will call methods onColumnSelector.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#selectors(java.util.Collection)
-
statistics
ColumnStatisticsConfiguration.Builder statistics(StatisticsConfiguration statistics)
Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
- Parameters:
statistics- Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statistics
default ColumnStatisticsConfiguration.Builder statistics(Consumer<StatisticsConfiguration.Builder> statistics)
Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
This is a convenience method that creates an instance of theStatisticsConfiguration.Builderavoiding the need to create one manually viaStatisticsConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostatistics(StatisticsConfiguration).- Parameters:
statistics- a consumer that will call methods onStatisticsConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
statistics(StatisticsConfiguration)
-
-