interface CfnAllowListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Macie.Mixins.CfnAllowListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmacie/mixins#CfnAllowListMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.macie.mixins.CfnAllowListMixinProps |
Python | aws_cdk.mixins_preview.aws_macie.mixins.CfnAllowListMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_macie » mixins » CfnAllowListMixinProps |
Properties for CfnAllowListPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-allowlist.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as macie_mixins } from '@aws-cdk/mixins-preview/aws-macie';
const cfnAllowListMixinProps: macie_mixins.CfnAllowListMixinProps = {
criteria: {
regex: 'regex',
s3WordsList: {
bucketName: 'bucketName',
objectKey: 'objectKey',
},
},
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| criteria? | IResolvable | Criteria | The criteria that specify the text or text pattern to ignore. |
| description? | string | A custom description of the allow list. |
| name? | string | A custom name for the allow list. |
| tags? | Cfn[] | An array of key-value pairs to apply to the allow list. |
criteria?
Type:
IResolvable | Criteria
(optional)
The criteria that specify the text or text pattern to ignore.
The criteria can be the location and name of an Amazon S3 object that lists specific text to ignore ( S3WordsList ), or a regular expression ( Regex ) that defines a text pattern to ignore.
description?
Type:
string
(optional)
A custom description of the allow list.
The description can contain 1-512 characters.
name?
Type:
string
(optional)
A custom name for the allow list.
The name can contain 1-128 characters.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to the allow list.
For more information, see Resource tag .

.NET
Go
Java
Python
TypeScript