@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:56.619Z") @Stability(value=Experimental) 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()
(experimental) The name of the Amazon S3 bucket that you want to send incoming mail to.
|
default String |
getKmsKeyArn()
(experimental) The customer master key that Amazon SES should use to encrypt your emails before saving them to the Amazon S3 bucket.
|
default String |
getObjectKeyPrefix()
(experimental) The key prefix of the Amazon S3 bucket.
|
default String |
getTopicArn()
(experimental) The ARN of the Amazon SNS topic to notify when the message is saved to the Amazon S3 bucket.
|
@Stability(value=Experimental) @NotNull String getBucketName()
@Stability(value=Experimental) @Nullable default String getKmsKeyArn()
Default: - Emails are not encrypted.
@Stability(value=Experimental) @Nullable default String getObjectKeyPrefix()
Default: - No prefix.
@Stability(value=Experimental) @Nullable default String getTopicArn()
Default: - No notification is sent to SNS.
@Stability(value=Experimental) static S3ActionConfig.Builder builder()
S3ActionConfig.Builder of S3ActionConfigCopyright © 2022. All rights reserved.