@Stability(value=Stable)
public static interface CfnJob.StatisticsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
Object parameters;
StatisticsConfigurationProperty statisticsConfigurationProperty = StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(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 List<String> |
getIncludedStatistics()
List of included evaluations.
|
default Object |
getOverrides()
List of overrides for evaluations.
|
@Stability(value=Stable) @Nullable default List<String> getIncludedStatistics()
When the list is undefined, all supported evaluations will be included.
@Stability(value=Stable) @Nullable default Object getOverrides()
@Stability(value=Stable) static CfnJob.StatisticsConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.