@Stability(value=Stable)
public static interface CfnJob.ProfileConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
// 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;
ProfileConfigurationProperty profileConfigurationProperty = ProfileConfigurationProperty.builder()
.columnStatisticsConfigurations(List.of(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()))
.datasetStatisticsConfiguration(StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(parameters)
.statistic("statistic")
.build()))
.build())
.entityDetectorConfiguration(EntityDetectorConfigurationProperty.builder()
.entityTypes(List.of("entityTypes"))
// the properties below are optional
.allowedStatistics(AllowedStatisticsProperty.builder()
.statistics(List.of("statistics"))
.build())
.build())
.profileColumns(List.of(ColumnSelectorProperty.builder()
.name("name")
.regex("regex")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.ProfileConfigurationProperty.Builder
A builder for
CfnJob.ProfileConfigurationProperty |
static class |
CfnJob.ProfileConfigurationProperty.Jsii$Proxy
An implementation for
CfnJob.ProfileConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.ProfileConfigurationProperty.Builder |
builder() |
default Object |
getColumnStatisticsConfigurations()
`CfnJob.ProfileConfigurationProperty.ColumnStatisticsConfigurations`.
|
default Object |
getDatasetStatisticsConfiguration()
`CfnJob.ProfileConfigurationProperty.DatasetStatisticsConfiguration`.
|
default Object |
getEntityDetectorConfiguration()
`CfnJob.ProfileConfigurationProperty.EntityDetectorConfiguration`.
|
default Object |
getProfileColumns()
`CfnJob.ProfileConfigurationProperty.ProfileColumns`.
|
@Stability(value=Stable) @Nullable default Object getColumnStatisticsConfigurations()
@Stability(value=Stable) @Nullable default Object getDatasetStatisticsConfiguration()
@Stability(value=Stable) @Nullable default Object getEntityDetectorConfiguration()
@Stability(value=Stable) @Nullable default Object getProfileColumns()
@Stability(value=Stable) static CfnJob.ProfileConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.