@Stability(value=Stable)
public static interface CfnReceiptRule.ActionProperty
extends software.amazon.jsii.JsiiSerializable
// 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())
.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
.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnReceiptRule.ActionProperty.Builder
A builder for
CfnReceiptRule.ActionProperty |
static class |
CfnReceiptRule.ActionProperty.Jsii$Proxy
An implementation for
CfnReceiptRule.ActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnReceiptRule.ActionProperty.Builder |
builder() |
default Object |
getAddHeaderAction()
`CfnReceiptRule.ActionProperty.AddHeaderAction`.
|
default Object |
getBounceAction()
`CfnReceiptRule.ActionProperty.BounceAction`.
|
default Object |
getLambdaAction()
`CfnReceiptRule.ActionProperty.LambdaAction`.
|
default Object |
getS3Action()
`CfnReceiptRule.ActionProperty.S3Action`.
|
default Object |
getSnsAction()
`CfnReceiptRule.ActionProperty.SNSAction`.
|
default Object |
getStopAction()
`CfnReceiptRule.ActionProperty.StopAction`.
|
default Object |
getWorkmailAction()
`CfnReceiptRule.ActionProperty.WorkmailAction`.
|
@Stability(value=Stable) @Nullable default Object getAddHeaderAction()
@Stability(value=Stable) @Nullable default Object getBounceAction()
@Stability(value=Stable) @Nullable default Object getLambdaAction()
@Stability(value=Stable) @Nullable default Object getS3Action()
@Stability(value=Stable) @Nullable default Object getSnsAction()
@Stability(value=Stable) @Nullable default Object getStopAction()
@Stability(value=Stable) @Nullable default Object getWorkmailAction()
@Stability(value=Stable) static CfnReceiptRule.ActionProperty.Builder builder()
Copyright © 2021. All rights reserved.