Interface BucketNotificationDestinationConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BucketNotificationDestinationConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:21.576Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBucketNotificationDestinationConfigstatic final classAn implementation forBucketNotificationDestinationConfig -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getArn()The ARN of the destination (i.e.default List<software.constructs.IDependable> Any additional dependencies that should be resolved before the bucket notification can be configured (for example, the SNS Topic Policy resource).getType()The notification type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The ARN of the destination (i.e. Lambda, SNS, SQS). -
getType
The notification type. -
getDependencies
Any additional dependencies that should be resolved before the bucket notification can be configured (for example, the SNS Topic Policy resource). -
builder
-