Interface CfnGuardrail.SensitiveInformationPolicyConfigProperty

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

@Stability(Stable) public static interface CfnGuardrail.SensitiveInformationPolicyConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains details about PII entities and regular expressions to configure for the guardrail.

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.*;
 SensitiveInformationPolicyConfigProperty sensitiveInformationPolicyConfigProperty = SensitiveInformationPolicyConfigProperty.builder()
         .piiEntitiesConfig(List.of(PiiEntityConfigProperty.builder()
                 .action("action")
                 .type("type")
                 .build()))
         .regexesConfig(List.of(RegexConfigProperty.builder()
                 .action("action")
                 .name("name")
                 .pattern("pattern")
                 // the properties below are optional
                 .description("description")
                 .build()))
         .build();
 

See Also: