interface CriteriaProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Macie.CfnAllowList.CriteriaProperty |
Java | software.amazon.awscdk.services.macie.CfnAllowList.CriteriaProperty |
Python | aws_cdk.aws_macie.CfnAllowList.CriteriaProperty |
TypeScript | @aws-cdk/aws-macie » CfnAllowList » CriteriaProperty |
Specifies the criteria for an allow list, which is a list that defines specific text or a text pattern to ignore when inspecting data sources for sensitive data.
The criteria can be:
- The location and name of an Amazon Simple Storage Service ( Amazon S3 ) object that lists specific, predefined text to ignore (
S3WordsList
), or - A regular expression (
Regex
) that defines a text pattern to ignore.
The criteria must specify either an S3 object or a regular expression. It can't specify both.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as macie from '@aws-cdk/aws-macie';
const criteriaProperty: macie.CfnAllowList.CriteriaProperty = {
regex: 'regex',
s3WordsList: {
bucketName: 'bucketName',
objectKey: 'objectKey',
},
};
Properties
Name | Type | Description |
---|---|---|
regex? | string | The regular expression ( regex ) that defines the text pattern to ignore. |
s3 | IResolvable | S3 | The location and name of an Amazon S3 object that lists specific text to ignore. |
regex?
Type:
string
(optional)
The regular expression ( regex ) that defines the text pattern to ignore.
The expression can contain 1-512 characters.
s3WordsList?
Type:
IResolvable
|
S3
(optional)
The location and name of an Amazon S3 object that lists specific text to ignore.