interface CfnCustomEntityTypeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnCustomEntityTypeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnCustomEntityTypeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnCustomEntityTypeMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnCustomEntityTypeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnCustomEntityTypeMixinProps |
Properties for CfnCustomEntityTypePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
declare const tags: any;
const cfnCustomEntityTypeMixinProps: glue_mixins.CfnCustomEntityTypeMixinProps = {
contextWords: ['contextWords'],
name: 'name',
regexString: 'regexString',
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| context | string[] | A list of context words. |
| name? | string | A name for the custom pattern that allows it to be retrieved or deleted later. |
| regex | string | A regular expression string that is used for detecting sensitive data in a custom pattern. |
| tags? | any | AWS tags that contain a key value pair and may be searched by console, command line, or API. |
contextWords?
Type:
string[]
(optional)
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.
name?
Type:
string
(optional)
A name for the custom pattern that allows it to be retrieved or deleted later.
This name must be unique per AWS account.
regexString?
Type:
string
(optional)
A regular expression string that is used for detecting sensitive data in a custom pattern.
tags?
Type:
any
(optional)
AWS tags that contain a key value pair and may be searched by console, command line, or API.

.NET
Go
Java
Python
TypeScript