Interface CfnBucketPropsMixin.TopicConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBucketPropsMixin.TopicConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnBucketPropsMixin

@Stability(Stable) public static interface CfnBucketPropsMixin.TopicConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A container for specifying the configuration for publication of messages to an Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects specified events.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.s3.mixins.*;
 TopicConfigurationProperty topicConfigurationProperty = TopicConfigurationProperty.builder()
         .event("event")
         .filter(NotificationFilterProperty.builder()
                 .s3Key(S3KeyFilterProperty.builder()
                         .rules(List.of(FilterRuleProperty.builder()
                                 .name("name")
                                 .value("value")
                                 .build()))
                         .build())
                 .build())
         .topic("topic")
         .build();
 

See Also: