Show / Hide Table of Contents

Class CfnAllowList.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.

Inheritance
object
CfnAllowList.S3WordsListProperty
Implements
CfnAllowList.IS3WordsListProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Macie
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAllowList.S3WordsListProperty : CfnAllowList.IS3WordsListProperty
Syntax (vb)
Public Class CfnAllowList.S3WordsListProperty Implements CfnAllowList.IS3WordsListProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-allowlist-s3wordslist.html

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.AWS.Macie;

             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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-allowlist-s3wordslist.html

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.AWS.Macie;

             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

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-allowlist-s3wordslist.html#cfn-macie-allowlist-s3wordslist-bucketname

ObjectKey

The full name of the S3 object.

public string ObjectKey { get; set; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-allowlist-s3wordslist.html#cfn-macie-allowlist-s3wordslist-objectkey

Implements

CfnAllowList.IS3WordsListProperty
Back to top Generated by DocFX