@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-02T20:25:31.978Z")
public interface S3ActionConfig
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() |
java.lang.String |
getBucketName()
The name of the Amazon S3 bucket that you want to send incoming mail to.
|
default java.lang.String |
getKmsKeyArn()
The customer master key that Amazon SES should use to encrypt your emails before saving them to the Amazon S3 bucket.
|
default java.lang.String |
getObjectKeyPrefix()
The key prefix of the Amazon S3 bucket.
|
default java.lang.String |
getTopicArn()
The ARN of the Amazon SNS topic to notify when the message is saved to the Amazon S3 bucket.
|
java.lang.String getBucketName()
default java.lang.String getKmsKeyArn()
Default: - Emails are not encrypted.
default java.lang.String getObjectKeyPrefix()
Default: - No prefix.
default java.lang.String getTopicArn()
Default: - No notification is sent to SNS.
static S3ActionConfig.Builder builder()
S3ActionConfig.Builder
of S3ActionConfig