Interface CfnJob.ColumnStatisticsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJob.ColumnStatisticsConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnJob
@Stability(Stable)
public static interface CfnJob.ColumnStatisticsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for column evaluations for a profile job.
ColumnStatisticsConfiguration can be used to select evaluations and override parameters of evaluations for particular columns.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.databrew.*;
ColumnStatisticsConfigurationProperty columnStatisticsConfigurationProperty = ColumnStatisticsConfigurationProperty.builder()
.statistics(StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(Map.of(
"parametersKey", "parameters"))
.statistic("statistic")
.build()))
.build())
// the properties below are optional
.selectors(List.of(ColumnSelectorProperty.builder()
.name("name")
.regex("regex")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJob.ColumnStatisticsConfigurationPropertystatic final classAn implementation forCfnJob.ColumnStatisticsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatistics
Configuration for evaluations.Statistics can be used to select evaluations and override parameters of evaluations.
-
getSelectors
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.
-
builder
-