Interface BucketNotificationDestinationConfig

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:24.009Z") @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();