Interface CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty.Jsii$Proxy
- Enclosing class:
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.*;
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe global confidence level for the inline redaction configuration.The global enforced URL configuration for the inline redaction configuration.The global exempt URL configuration for the inline redaction configuration.default ObjectThe inline redaction patterns to be enabled for the inline redaction configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGlobalConfidenceLevel
The global confidence level for the inline redaction configuration.This indicates the certainty of data type matches in the redaction process. Confidence level 3 means high confidence, and requires a formatted text pattern match in order for content to be redacted. Confidence level 2 means medium confidence, and redaction considers both formatted and unformatted text, and adds keyword associate to the logic. Confidence level 1 means low confidence, and redaction is enforced for both formatted pattern + unformatted pattern without keyword. This is applied to patterns that do not have a pattern-level confidence level. Defaults to confidence level 2.
- See Also:
-
getGlobalEnforcedUrls
The global enforced URL configuration for the inline redaction configuration.This is applied to patterns that do not have a pattern-level enforced URL list.
- See Also:
-
getGlobalExemptUrls
The global exempt URL configuration for the inline redaction configuration.This is applied to patterns that do not have a pattern-level exempt URL list.
- See Also:
-
getInlineRedactionPatterns
The inline redaction patterns to be enabled for the inline redaction configuration.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataProtectionSettingsPropsMixin.InlineRedactionPatternProperty>- See Also:
-
builder
@Stability(Stable) static CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty.Builder builder()
-