Interface ICfnCustomEntityTypeProps
Properties for defining a CfnCustomEntityType
.
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnCustomEntityTypeProps
Syntax (vb)
Public Interface ICfnCustomEntityTypeProps
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.Glue;
var tags;
var cfnCustomEntityTypeProps = new CfnCustomEntityTypeProps {
ContextWords = new [] { "contextWords" },
Name = "name",
RegexString = "regexString",
Tags = tags
};
Synopsis
Properties
Context |
A list of context words. |
Name | A name for the custom pattern that allows it to be retrieved or deleted later. |
Regex |
A regular expression string that is used for detecting sensitive data in a custom pattern. |
Tags | AWS tags that contain a key value pair and may be searched by console, command line, or API. |
Properties
ContextWords
A list of context words.
virtual string[] ContextWords { get; }
Property Value
System.
Remarks
If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.
If no context words are passed only a regular expression is checked.
Name
A name for the custom pattern that allows it to be retrieved or deleted later.
virtual string Name { get; }
Property Value
System.
Remarks
This name must be unique per AWS account.
RegexString
A regular expression string that is used for detecting sensitive data in a custom pattern.
virtual string RegexString { get; }
Property Value
System.
Remarks
Tags
AWS tags that contain a key value pair and may be searched by console, command line, or API.
virtual object Tags { get; }
Property Value
System.