Interface CfnJob.EntityDetectorConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.EntityDetectorConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.EntityDetectorConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration of entity detection for a profile job.

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();
 

See Also: