Show / Hide Table of Contents

Interface CfnBucket.INotificationFilterProperty

Specifies object key name filtering rules.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBucket.INotificationFilterProperty
Syntax (vb)
Public Interface CfnBucket.INotificationFilterProperty
Remarks

For information about key name filtering, see Configuring event notifications using object key name filtering in the Amazon S3 User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationfilter.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.S3;

             var notificationFilterProperty = new NotificationFilterProperty {
                 S3Key = new S3KeyFilterProperty {
                     Rules = new [] { new FilterRuleProperty {
                         Name = "name",
                         Value = "value"
                     } }
                 }
             };

Synopsis

Properties

S3Key

A container for object key name prefix and suffix filtering rules.

Properties

S3Key

A container for object key name prefix and suffix filtering rules.

object S3Key { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationfilter.html#cfn-s3-bucket-notificationfilter-s3key

Type union: either IResolvable or CfnBucket.IS3KeyFilterProperty

Back to top Generated by DocFX