Class 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.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Macie.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAllowListPropsMixin.S3WordsListProperty : CfnAllowListPropsMixin.IS3WordsListProperty
Syntax (vb)
Public Class CfnAllowListPropsMixin.S3WordsListProperty Implements CfnAllowListPropsMixin.IS3WordsListProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Macie.Mixins;
var s3WordsListProperty = new S3WordsListProperty {
BucketName = "bucketName",
ObjectKey = "objectKey"
};
Synopsis
Constructors
| 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. |
Properties
| BucketName | The full name of the S3 bucket that contains the object. |
| ObjectKey | The full name of the S3 object. |
Constructors
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.
public S3WordsListProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Macie.Mixins;
var s3WordsListProperty = new S3WordsListProperty {
BucketName = "bucketName",
ObjectKey = "objectKey"
};
Properties
BucketName
The full name of the S3 bucket that contains the object.
public string? BucketName { get; set; }
Property Value
Remarks
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
The full name of the S3 object.
public string? ObjectKey { get; set; }
Property Value
Remarks
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.