Interface ICfnDataProtectionSettingsProps
Properties for defining a CfnDataProtectionSettings
.
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDataProtectionSettingsProps
Syntax (vb)
Public Interface 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
Properties
AdditionalEncryptionContext | The additional encryption context of the data protection settings. |
CustomerManagedKey | The customer managed key used to encrypt sensitive information in the data protection settings. |
Description | The description of the data protection settings. |
DisplayName | The display name of the data protection settings. |
InlineRedactionConfiguration | The inline redaction configuration for the data protection settings. |
Tags | The tags of the data protection settings. |
Properties
AdditionalEncryptionContext
The additional encryption context of the data protection settings.
virtual object AdditionalEncryptionContext { get; }
Property Value
System.Object
Remarks
CustomerManagedKey
The customer managed key used to encrypt sensitive information in the data protection settings.
virtual string CustomerManagedKey { get; }
Property Value
System.String
Remarks
Description
The description of the data protection settings.
virtual string Description { get; }
Property Value
System.String
Remarks
DisplayName
The display name of the data protection settings.
virtual string DisplayName { get; }
Property Value
System.String
Remarks
InlineRedactionConfiguration
The inline redaction configuration for the data protection settings.
virtual object InlineRedactionConfiguration { get; }
Property Value
System.Object
Remarks
Tags
The tags of the data protection settings.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]