Interface CfnDataAutomationProject.SensitiveDataConfigurationProperty

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

@Stability(Stable) public static interface CfnDataAutomationProject.SensitiveDataConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.bedrock.*;
 SensitiveDataConfigurationProperty sensitiveDataConfigurationProperty = SensitiveDataConfigurationProperty.builder()
         .detectionMode("detectionMode")
         .detectionScope(List.of("detectionScope"))
         .piiEntitiesConfiguration(PIIEntitiesConfigurationProperty.builder()
                 .piiEntityTypes(List.of("piiEntityTypes"))
                 .redactionMaskMode("redactionMaskMode")
                 .build())
         .build();
 

See Also: