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