Interface CfnDataProtectionSettingsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProtectionSettingsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:50.705Z")
@Stability(Stable)
public interface CfnDataProtectionSettingsProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataProtectionSettings.
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.workspacesweb.*;
CfnDataProtectionSettingsProps cfnDataProtectionSettingsProps = CfnDataProtectionSettingsProps.builder()
.additionalEncryptionContext(Map.of(
"additionalEncryptionContextKey", "additionalEncryptionContext"))
.customerManagedKey("customerManagedKey")
.description("description")
.displayName("displayName")
.inlineRedactionConfiguration(InlineRedactionConfigurationProperty.builder()
.inlineRedactionPatterns(List.of(InlineRedactionPatternProperty.builder()
.redactionPlaceHolder(RedactionPlaceHolderProperty.builder()
.redactionPlaceHolderType("redactionPlaceHolderType")
// the properties below are optional
.redactionPlaceHolderText("redactionPlaceHolderText")
.build())
// the properties below are optional
.builtInPatternId("builtInPatternId")
.confidenceLevel(123)
.customPattern(CustomPatternProperty.builder()
.patternName("patternName")
.patternRegex("patternRegex")
// the properties below are optional
.keywordRegex("keywordRegex")
.patternDescription("patternDescription")
.build())
.enforcedUrls(List.of("enforcedUrls"))
.exemptUrls(List.of("exemptUrls"))
.build()))
// the properties below are optional
.globalConfidenceLevel(123)
.globalEnforcedUrls(List.of("globalEnforcedUrls"))
.globalExemptUrls(List.of("globalExemptUrls"))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataProtectionSettingsPropsstatic final classAn implementation forCfnDataProtectionSettingsProps -
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
IResolvableorCfnDataProtectionSettings.InlineRedactionConfigurationProperty- See Also:
-
getTags
The tags of the data protection settings.- See Also:
-
builder
-