Interface CfnCustomEntityTypeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomEntityTypeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:10.686Z")
@Stability(Stable)
public interface CfnCustomEntityTypeProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCustomEntityType.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
Object tags;
CfnCustomEntityTypeProps cfnCustomEntityTypeProps = CfnCustomEntityTypeProps.builder()
.contextWords(List.of("contextWords"))
.name("name")
.regexString("regexString")
.tags(tags)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomEntityTypePropsstatic final classAn implementation forCfnCustomEntityTypeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of context words.default StringgetName()A name for the custom pattern that allows it to be retrieved or deleted later.default StringA regular expression string that is used for detecting sensitive data in a custom pattern.default ObjectgetTags()AWS tags that contain a key value pair and may be searched by console, command line, or API.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContextWords
A list of context words.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.
- See Also:
-
getName
A name for the custom pattern that allows it to be retrieved or deleted later.This name must be unique per AWS account.
- See Also:
-
getRegexString
A regular expression string that is used for detecting sensitive data in a custom pattern.- See Also:
-
getTags
AWS tags that contain a key value pair and may be searched by console, command line, or API.- See Also:
-
builder
- Returns:
- a
CfnCustomEntityTypeProps.BuilderofCfnCustomEntityTypeProps
-