@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-04-27T09:48:15.360Z") @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.amazon.awscdk.core.*; 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<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<IDependable> getDependencies()
@Stability(value=Stable) static BucketNotificationDestinationConfig.Builder builder()
Copyright © 2023. All rights reserved.