Interface CfnJob.StatisticsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.StatisticsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.StatisticsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration of evaluations for a profile job.

This configuration can be used to select evaluations and override the parameters of selected evaluations.

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.*;
 StatisticsConfigurationProperty statisticsConfigurationProperty = StatisticsConfigurationProperty.builder()
         .includedStatistics(List.of("includedStatistics"))
         .overrides(List.of(StatisticOverrideProperty.builder()
                 .parameters(Map.of(
                         "parametersKey", "parameters"))
                 .statistic("statistic")
                 .build()))
         .build();
 

See Also: