Interface CfnJob.AllowedStatisticsProperty

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

@Stability(Stable) public static interface CfnJob.AllowedStatisticsProperty extends software.amazon.jsii.JsiiSerializable
Configuration of statistics that are allowed to be run on columns that contain detected entities.

When undefined, no statistics will be computed on columns that contain detected entities.

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.*;
 AllowedStatisticsProperty allowedStatisticsProperty = AllowedStatisticsProperty.builder()
         .statistics(List.of("statistics"))
         .build();
 

See Also: