Interface CfnDataProtectionSettingsMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataProtectionSettingsMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:06.352Z") @Stability(Stable) public interface CfnDataProtectionSettingsMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnDataProtectionSettingsPropsMixin.

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.*;
 CfnDataProtectionSettingsMixinProps cfnDataProtectionSettingsMixinProps = CfnDataProtectionSettingsMixinProps.builder()
         .additionalEncryptionContext(Map.of(
                 "additionalEncryptionContextKey", "additionalEncryptionContext"))
         .customerManagedKey("customerManagedKey")
         .description("description")
         .displayName("displayName")
         .inlineRedactionConfiguration(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())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: