Interface CfnReceiptRule.ActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReceiptRule.ActionProperty.Jsii$Proxy
- Enclosing class:
CfnReceiptRule
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.services.ses.*;
ActionProperty actionProperty = ActionProperty.builder()
.addHeaderAction(AddHeaderActionProperty.builder()
.headerName("headerName")
.headerValue("headerValue")
.build())
.bounceAction(BounceActionProperty.builder()
.message("message")
.sender("sender")
.smtpReplyCode("smtpReplyCode")
// the properties below are optional
.statusCode("statusCode")
.topicArn("topicArn")
.build())
.connectAction(ConnectActionProperty.builder()
.iamRoleArn("iamRoleArn")
.instanceArn("instanceArn")
.build())
.lambdaAction(LambdaActionProperty.builder()
.functionArn("functionArn")
// the properties below are optional
.invocationType("invocationType")
.topicArn("topicArn")
.build())
.s3Action(S3ActionProperty.builder()
.bucketName("bucketName")
// the properties below are optional
.iamRoleArn("iamRoleArn")
.kmsKeyArn("kmsKeyArn")
.objectKeyPrefix("objectKeyPrefix")
.topicArn("topicArn")
.build())
.snsAction(SNSActionProperty.builder()
.encoding("encoding")
.topicArn("topicArn")
.build())
.stopAction(StopActionProperty.builder()
.scope("scope")
// the properties below are optional
.topicArn("topicArn")
.build())
.workmailAction(WorkmailActionProperty.builder()
.organizationArn("organizationArn")
// the properties below are optional
.topicArn("topicArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReceiptRule.ActionPropertystatic final classAn implementation forCfnReceiptRule.ActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAdds a header to the received email.default ObjectRejects the received email by returning a bounce response to the sender and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).default ObjectThe action that informs a traffic policy resource to either allow or block the email if it matches a condition in the policy statement.default ObjectCalls an AWS Lambda function, and optionally, publishes a notification to Amazon SNS.default ObjectSaves the received message to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally, publishes a notification to Amazon SNS.default ObjectPublishes the email content within a notification to Amazon SNS.default ObjectTerminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS.default ObjectCalls Amazon WorkMail and, optionally, publishes a notification to Amazon SNS.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddHeaderAction
Adds a header to the received email.Returns union: either
IResolvableorCfnReceiptRule.AddHeaderActionProperty- See Also:
-
getBounceAction
Rejects the received email by returning a bounce response to the sender and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).Returns union: either
IResolvableorCfnReceiptRule.BounceActionProperty- See Also:
-
getConnectAction
The action that informs a traffic policy resource to either allow or block the email if it matches a condition in the policy statement.Returns union: either
IResolvableorCfnReceiptRule.ConnectActionProperty- See Also:
-
getLambdaAction
Calls an AWS Lambda function, and optionally, publishes a notification to Amazon SNS.Returns union: either
IResolvableorCfnReceiptRule.LambdaActionProperty- See Also:
-
getS3Action
Saves the received message to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally, publishes a notification to Amazon SNS.Returns union: either
IResolvableorCfnReceiptRule.S3ActionProperty- See Also:
-
getSnsAction
Publishes the email content within a notification to Amazon SNS.Returns union: either
IResolvableorCfnReceiptRule.SNSActionProperty- See Also:
-
getStopAction
Terminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS.Returns union: either
IResolvableorCfnReceiptRule.StopActionProperty- See Also:
-
getWorkmailAction
Calls Amazon WorkMail and, optionally, publishes a notification to Amazon SNS.Returns union: either
IResolvableorCfnReceiptRule.WorkmailActionProperty- See Also:
-
builder
-