Show / Hide Table of Contents

Interface CfnBucket.INotificationFilterProperty

Specifies object key name filtering rules.

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

For information about key name filtering, see Configuring Event Notifications in the Amazon S3 User Guide .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfiguration-config-filter.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;

NotificationFilterProperty 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

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfiguration-config-filter.html#cfn-s3-bucket-notificationconfiguraiton-config-filter-s3key

Back to top Generated by DocFX