Interface CfnReceiptRulePropsMixin.ActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReceiptRulePropsMixin.ActionProperty.Jsii$Proxy
Enclosing class:
CfnReceiptRulePropsMixin

@Stability(Stable) public static interface CfnReceiptRulePropsMixin.ActionProperty extends software.amazon.jsii.JsiiSerializable
An action that Amazon SES can take when it receives an email on behalf of one or more email addresses or domains that you own.

An instance of this data type can represent only one action.

For information about setting up receipt rules, see the Amazon SES Developer Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
 ActionProperty actionProperty = ActionProperty.builder()
         .addHeaderAction(AddHeaderActionProperty.builder()
                 .headerName("headerName")
                 .headerValue("headerValue")
                 .build())
         .bounceAction(BounceActionProperty.builder()
                 .message("message")
                 .sender("sender")
                 .smtpReplyCode("smtpReplyCode")
                 .statusCode("statusCode")
                 .topicArn("topicArn")
                 .build())
         .connectAction(ConnectActionProperty.builder()
                 .iamRoleArn("iamRoleArn")
                 .instanceArn("instanceArn")
                 .build())
         .lambdaAction(LambdaActionProperty.builder()
                 .functionArn("functionArn")
                 .invocationType("invocationType")
                 .topicArn("topicArn")
                 .build())
         .s3Action(S3ActionProperty.builder()
                 .bucketName("bucketName")
                 .iamRoleArn("iamRoleArn")
                 .kmsKeyArn("kmsKeyArn")
                 .objectKeyPrefix("objectKeyPrefix")
                 .topicArn("topicArn")
                 .build())
         .snsAction(SNSActionProperty.builder()
                 .encoding("encoding")
                 .topicArn("topicArn")
                 .build())
         .stopAction(StopActionProperty.builder()
                 .scope("scope")
                 .topicArn("topicArn")
                 .build())
         .workmailAction(WorkmailActionProperty.builder()
                 .organizationArn("organizationArn")
                 .topicArn("topicArn")
                 .build())
         .build();
 

See Also: