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();