interface CfnDataProtectionSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnDataProtectionSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnDataProtectionSettingsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnDataProtectionSettingsMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnDataProtectionSettingsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnDataProtectionSettingsMixinProps |
Properties for CfnDataProtectionSettingsPropsMixin.
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 cfnDataProtectionSettingsMixinProps: workspacesweb_mixins.CfnDataProtectionSettingsMixinProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
customerManagedKey: 'customerManagedKey',
description: 'description',
displayName: 'displayName',
inlineRedactionConfiguration: {
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',
},
}],
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | The additional encryption context of the data protection settings. |
| customer | string | The customer managed key used to encrypt sensitive information in the data protection settings. |
| description? | string | The description of the data protection settings. |
| display | string | The display name of the data protection settings. |
| inline | IResolvable | Inline | The inline redaction configuration for the data protection settings. |
| tags? | Cfn[] | The tags of the data protection settings. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
The additional encryption context of the data protection settings.
customerManagedKey?
Type:
string
(optional)
The customer managed key used to encrypt sensitive information in the data protection settings.
description?
Type:
string
(optional)
The description of the data protection settings.
displayName?
Type:
string
(optional)
The display name of the data protection settings.
inlineRedactionConfiguration?
Type:
IResolvable | Inline
(optional)
The inline redaction configuration for the data protection settings.
tags?
Type:
Cfn[]
(optional)
The tags of the data protection settings.

.NET
Go
Java
Python
TypeScript