@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.735Z") @Stability(value=Stable) public interface BucketNotificationDestinationConfig extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BucketNotificationDestinationConfig.Builder
A builder for
BucketNotificationDestinationConfig |
static class |
BucketNotificationDestinationConfig.Jsii$Proxy
An implementation for
BucketNotificationDestinationConfig |
| Modifier and Type | Method and Description |
|---|---|
static BucketNotificationDestinationConfig.Builder |
builder() |
String |
getArn()
The ARN of the destination (i.e.
|
default List<software.constructs.IDependable> |
getDependencies()
Any additional dependencies that should be resolved before the bucket notification can be configured (for example, the SNS Topic Policy resource).
|
BucketNotificationDestinationType |
getType()
The notification type.
|
@Stability(value=Stable) @NotNull String getArn()
@Stability(value=Stable) @NotNull BucketNotificationDestinationType getType()
@Stability(value=Stable) @Nullable default List<software.constructs.IDependable> getDependencies()
@Stability(value=Stable) static BucketNotificationDestinationConfig.Builder builder()
Copyright © 2022. All rights reserved.