Interface CfnCustomEntityTypeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomEntityTypeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-19T18:01:36.025Z")
@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 class
A builder forCfnCustomEntityTypeProps
static final class
An implementation forCfnCustomEntityTypeProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of context words.default String
getName()
A name for the custom pattern that allows it to be retrieved or deleted later.default String
A regular expression string that is used for detecting sensitive data in a custom pattern.default Object
getTags()
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.Builder
ofCfnCustomEntityTypeProps
-