interface S3WordsListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Macie.Mixins.CfnAllowListPropsMixin.S3WordsListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmacie/mixins#CfnAllowListPropsMixin_S3WordsListProperty |
Java | software.amazon.awscdk.mixins.preview.services.macie.mixins.CfnAllowListPropsMixin.S3WordsListProperty |
Python | aws_cdk.mixins_preview.aws_macie.mixins.CfnAllowListPropsMixin.S3WordsListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_macie » mixins » CfnAllowListPropsMixin » S3WordsListProperty |
Specifies the location and name of an Amazon Simple Storage Service ( Amazon S3 ) object that lists specific, predefined text to ignore when inspecting data sources for sensitive data.
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 s3WordsListProperty: macie_mixins.CfnAllowListPropsMixin.S3WordsListProperty = {
bucketName: 'bucketName',
objectKey: 'objectKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The full name of the S3 bucket that contains the object. |
| object | string | The full name of the S3 object. |
bucketName?
Type:
string
(optional)
The full name of the S3 bucket that contains the object.
This value correlates to the Name field of a bucket's properties in Amazon S3 .
This value is case sensitive. In addition, don't use wildcard characters or specify partial values for the name.
objectKey?
Type:
string
(optional)
The full name of the S3 object.
This value correlates to the Key field of an object's properties in Amazon S3 . If the name includes a path, include the complete path. For example, AllowLists/Macie/MyList.txt .
This value is case sensitive. In addition, don't use wildcard characters or specify partial values for the name.

.NET
Go
Java
Python
TypeScript