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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBucketNotificationDestinationConfig
static final class
An implementation forBucketNotificationDestinationConfig
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getArn()
The ARN of the destination (i.e.default List<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
-