Interface BucketNotificationDestinationConfig

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.499Z") @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.amazon.awscdk.core.*;
 IDependable dependable;
 BucketNotificationDestinationConfig bucketNotificationDestinationConfig = BucketNotificationDestinationConfig.builder()
         .arn("arn")
         .type(BucketNotificationDestinationType.LAMBDA)
         // the properties below are optional
         .dependencies(List.of(dependable))
         .build();