Interface CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty

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

@Stability(Stable) public static interface CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for in-session inline redaction.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.workspacesweb.*;
 InlineRedactionConfigurationProperty inlineRedactionConfigurationProperty = InlineRedactionConfigurationProperty.builder()
         .globalConfidenceLevel(123)
         .globalEnforcedUrls(List.of("globalEnforcedUrls"))
         .globalExemptUrls(List.of("globalExemptUrls"))
         .inlineRedactionPatterns(List.of(InlineRedactionPatternProperty.builder()
                 .builtInPatternId("builtInPatternId")
                 .confidenceLevel(123)
                 .customPattern(CustomPatternProperty.builder()
                         .keywordRegex("keywordRegex")
                         .patternDescription("patternDescription")
                         .patternName("patternName")
                         .patternRegex("patternRegex")
                         .build())
                 .enforcedUrls(List.of("enforcedUrls"))
                 .exemptUrls(List.of("exemptUrls"))
                 .redactionPlaceHolder(RedactionPlaceHolderProperty.builder()
                         .redactionPlaceHolderText("redactionPlaceHolderText")
                         .redactionPlaceHolderType("redactionPlaceHolderType")
                         .build())
                 .build()))
         .build();
 

See Also: