@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.221Z") @Stability(value=Stable) public interface S3ActionConfig 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.ses.*;
S3ActionConfig s3ActionConfig = S3ActionConfig.builder()
.bucketName("bucketName")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.objectKeyPrefix("objectKeyPrefix")
.topicArn("topicArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
S3ActionConfig.Builder
A builder for
S3ActionConfig |
static class |
S3ActionConfig.Jsii$Proxy
An implementation for
S3ActionConfig |
| Modifier and Type | Method and Description |
|---|---|
static S3ActionConfig.Builder |
builder() |
String |
getBucketName()
The name of the Amazon S3 bucket that you want to send incoming mail to.
|
default String |
getKmsKeyArn()
The customer master key that Amazon SES should use to encrypt your emails before saving them to the Amazon S3 bucket.
|
default String |
getObjectKeyPrefix()
The key prefix of the Amazon S3 bucket.
|
default String |
getTopicArn()
The ARN of the Amazon SNS topic to notify when the message is saved to the Amazon S3 bucket.
|
@Stability(value=Stable) @NotNull String getBucketName()
@Stability(value=Stable) @Nullable default String getKmsKeyArn()
Default: - Emails are not encrypted.
@Stability(value=Stable) @Nullable default String getObjectKeyPrefix()
Default: - No prefix.
@Stability(value=Stable) @Nullable default String getTopicArn()
Default: - No notification is sent to SNS.
@Stability(value=Stable) static S3ActionConfig.Builder builder()
S3ActionConfig.Builder of S3ActionConfigCopyright © 2022. All rights reserved.