interface InlineRedactionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnDataProtectionSettingsPropsMixin_InlineRedactionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnDataProtectionSettingsPropsMixin » InlineRedactionConfigurationProperty |
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 { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const inlineRedactionConfigurationProperty: workspacesweb_mixins.CfnDataProtectionSettingsPropsMixin.InlineRedactionConfigurationProperty = {
globalConfidenceLevel: 123,
globalEnforcedUrls: ['globalEnforcedUrls'],
globalExemptUrls: ['globalExemptUrls'],
inlineRedactionPatterns: [{
builtInPatternId: 'builtInPatternId',
confidenceLevel: 123,
customPattern: {
keywordRegex: 'keywordRegex',
patternDescription: 'patternDescription',
patternName: 'patternName',
patternRegex: 'patternRegex',
},
enforcedUrls: ['enforcedUrls'],
exemptUrls: ['exemptUrls'],
redactionPlaceHolder: {
redactionPlaceHolderText: 'redactionPlaceHolderText',
redactionPlaceHolderType: 'redactionPlaceHolderType',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| global | number | The global confidence level for the inline redaction configuration. |
| global | string[] | The global enforced URL configuration for the inline redaction configuration. |
| global | string[] | The global exempt URL configuration for the inline redaction configuration. |
| inline | IResolvable | (IResolvable | Inline)[] | The inline redaction patterns to be enabled for the inline redaction configuration. |
globalConfidenceLevel?
Type:
number
(optional)
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.
globalEnforcedUrls?
Type:
string[]
(optional)
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.
globalExemptUrls?
Type:
string[]
(optional)
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.
inlineRedactionPatterns?
Type:
IResolvable | (IResolvable | Inline)[]
(optional)
The inline redaction patterns to be enabled for the inline redaction configuration.

.NET
Go
Java
Python
TypeScript