@Stability(value=Stable)
public static interface CfnJob.ColumnStatisticsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
Object parameters;
ColumnStatisticsConfigurationProperty columnStatisticsConfigurationProperty = ColumnStatisticsConfigurationProperty.builder()
.statistics(StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(parameters)
.statistic("statistic")
.build()))
.build())
// the properties below are optional
.selectors(List.of(ColumnSelectorProperty.builder()
.name("name")
.regex("regex")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.ColumnStatisticsConfigurationProperty.Builder
A builder for
CfnJob.ColumnStatisticsConfigurationProperty |
static class |
CfnJob.ColumnStatisticsConfigurationProperty.Jsii$Proxy
An implementation for
CfnJob.ColumnStatisticsConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.ColumnStatisticsConfigurationProperty.Builder |
builder() |
default Object |
getSelectors()
List of column selectors.
|
Object |
getStatistics()
Configuration for evaluations.
|
@Stability(value=Stable) @NotNull Object getStatistics()
Statistics can be used to select evaluations and override parameters of evaluations.
@Stability(value=Stable) @Nullable default Object getSelectors()
Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
@Stability(value=Stable) static CfnJob.ColumnStatisticsConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.