Class CfnDataProtectionSettingsProps
Properties for defining a CfnDataProtectionSettings
.
Inheritance
Implements
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataProtectionSettingsProps : Object, ICfnDataProtectionSettingsProps
Syntax (vb)
Public Class CfnDataProtectionSettingsProps
Inherits Object
Implements ICfnDataProtectionSettingsProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_workspacesweb;
var cfnDataProtectionSettingsProps = new CfnDataProtectionSettingsProps {
AdditionalEncryptionContext = new Dictionary<string, string> {
{ "additionalEncryptionContextKey", "additionalEncryptionContext" }
},
CustomerManagedKey = "customerManagedKey",
Description = "description",
DisplayName = "displayName",
InlineRedactionConfiguration = new InlineRedactionConfigurationProperty {
InlineRedactionPatterns = new [] { new InlineRedactionPatternProperty {
RedactionPlaceHolder = new RedactionPlaceHolderProperty {
RedactionPlaceHolderType = "redactionPlaceHolderType",
// the properties below are optional
RedactionPlaceHolderText = "redactionPlaceHolderText"
},
// the properties below are optional
BuiltInPatternId = "builtInPatternId",
ConfidenceLevel = 123,
CustomPattern = new CustomPatternProperty {
PatternName = "patternName",
PatternRegex = "patternRegex",
// the properties below are optional
KeywordRegex = "keywordRegex",
PatternDescription = "patternDescription"
},
EnforcedUrls = new [] { "enforcedUrls" },
ExemptUrls = new [] { "exemptUrls" }
} },
// the properties below are optional
GlobalConfidenceLevel = 123,
GlobalEnforcedUrls = new [] { "globalEnforcedUrls" },
GlobalExemptUrls = new [] { "globalExemptUrls" }
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Additional |
The additional encryption context of the data protection settings. |
Customer |
The customer managed key used to encrypt sensitive information in the data protection settings. |
Description | The description of the data protection settings. |
Display |
The display name of the data protection settings. |
Inline |
The inline redaction configuration for the data protection settings. |
Tags | The tags of the data protection settings. |
Constructors
CfnDataProtectionSettingsProps()
public CfnDataProtectionSettingsProps()
Properties
AdditionalEncryptionContext
The additional encryption context of the data protection settings.
public object AdditionalEncryptionContext { get; set; }
Property Value
System.
Remarks
CustomerManagedKey
The customer managed key used to encrypt sensitive information in the data protection settings.
public string CustomerManagedKey { get; set; }
Property Value
System.
Remarks
Description
The description of the data protection settings.
public string Description { get; set; }
Property Value
System.
Remarks
DisplayName
The display name of the data protection settings.
public string DisplayName { get; set; }
Property Value
System.
Remarks
InlineRedactionConfiguration
The inline redaction configuration for the data protection settings.
public object InlineRedactionConfiguration { get; set; }
Property Value
System.
Remarks
Tags
The tags of the data protection settings.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn