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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataProtectionSettingsMixinPropsstatic final classAn implementation forCfnDataProtectionSettingsMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe additional encryption context of the data protection settings.default StringThe customer managed key used to encrypt sensitive information in the data protection settings.default StringThe description of the data protection settings.default StringThe display name of the data protection settings.default ObjectThe inline redaction configuration for the data protection settings.getTags()The tags of the data protection settings.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalEncryptionContext
The additional encryption context of the data protection settings.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getCustomerManagedKey
The customer managed key used to encrypt sensitive information in the data protection settings.- See Also:
-
getDescription
The description of the data protection settings.- See Also:
-
getDisplayName
The display name of the data protection settings.- See Also:
-
getInlineRedactionConfiguration
The inline redaction configuration for the data protection settings.Returns union: either
IResolvableorCfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty- See Also:
-
getTags
The tags of the data protection settings.- See Also:
-
builder
-