@Stability(value=Stable)
public static interface CfnJob.EntityDetectorConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
When undefined, entity detection is disabled.
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.*;
EntityDetectorConfigurationProperty entityDetectorConfigurationProperty = EntityDetectorConfigurationProperty.builder()
.entityTypes(List.of("entityTypes"))
// the properties below are optional
.allowedStatistics(AllowedStatisticsProperty.builder()
.statistics(List.of("statistics"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.EntityDetectorConfigurationProperty.Builder
A builder for
CfnJob.EntityDetectorConfigurationProperty |
static class |
CfnJob.EntityDetectorConfigurationProperty.Jsii$Proxy
An implementation for
CfnJob.EntityDetectorConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.EntityDetectorConfigurationProperty.Builder |
builder() |
default Object |
getAllowedStatistics()
Configuration of statistics that are allowed to be run on columns that contain detected entities.
|
List<String> |
getEntityTypes()
Entity types to detect.
|
@Stability(value=Stable) @NotNull List<String> getEntityTypes()
The Entity type group USA_ALL is also supported, and includes all of the above entity types except PERSON_NAME and DATE.
@Stability(value=Stable) @Nullable default Object getAllowedStatistics()
When undefined, no statistics will be computed on columns that contain detected entities.
@Stability(value=Stable) static CfnJob.EntityDetectorConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.