public static interface CfnJob.StatisticsConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnJob.StatisticsConfigurationProperty.Builder
A builder for
CfnJob.StatisticsConfigurationProperty |
static class |
CfnJob.StatisticsConfigurationProperty.Jsii$Proxy
An implementation for
CfnJob.StatisticsConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnJob.StatisticsConfigurationProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getIncludedStatistics()
List of included evaluations.
|
default java.lang.Object |
getOverrides()
List of overrides for evaluations.
|
default java.util.List<java.lang.String> getIncludedStatistics()
When the list is undefined, all supported evaluations will be included.
default java.lang.Object getOverrides()
static CfnJob.StatisticsConfigurationProperty.Builder builder()