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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJob.StatisticsConfigurationProperty
static final class
An implementation forCfnJob.StatisticsConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIncludedStatistics
List of included evaluations.When the list is undefined, all supported evaluations will be included.
-
getOverrides
List of overrides for evaluations. -
builder
-