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
Configuration for detecting and redacting sensitive data in content.

Use this to control whether sensitive data is detected only or both detected and redacted, specify the scope of detection (standard output, custom output, or both), and configure specific PII entity types to detect along with how they should be masked when redacted.

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: