Interface BucketNotificationDestinationConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BucketNotificationDestinationConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-15T01:32:54.379Z") @Stability(Stable) public interface BucketNotificationDestinationConfig extends software.amazon.jsii.JsiiSerializable
Represents the properties of a notification destination.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.s3.*;
 import software.constructs.*;
 IDependable dependable;
 BucketNotificationDestinationConfig bucketNotificationDestinationConfig = BucketNotificationDestinationConfig.builder()
         .arn("arn")
         .type(BucketNotificationDestinationType.LAMBDA)
         // the properties below are optional
         .dependencies(List.of(dependable))
         .build();