@Stability(value=Stable)
public static interface CfnReceiptRule.RuleProperty
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.*;
RuleProperty ruleProperty = RuleProperty.builder()
.actions(List.of(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()))
.enabled(false)
.name("name")
.recipients(List.of("recipients"))
.scanEnabled(false)
.tlsPolicy("tlsPolicy")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnReceiptRule.RuleProperty.Builder
A builder for
CfnReceiptRule.RuleProperty |
static class |
CfnReceiptRule.RuleProperty.Jsii$Proxy
An implementation for
CfnReceiptRule.RuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnReceiptRule.RuleProperty.Builder |
builder() |
default Object |
getActions()
`CfnReceiptRule.RuleProperty.Actions`.
|
default Object |
getEnabled()
`CfnReceiptRule.RuleProperty.Enabled`.
|
default String |
getName()
`CfnReceiptRule.RuleProperty.Name`.
|
default List<String> |
getRecipients()
`CfnReceiptRule.RuleProperty.Recipients`.
|
default Object |
getScanEnabled()
`CfnReceiptRule.RuleProperty.ScanEnabled`.
|
default String |
getTlsPolicy()
`CfnReceiptRule.RuleProperty.TlsPolicy`.
|
@Stability(value=Stable) @Nullable default Object getActions()
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<String> getRecipients()
@Stability(value=Stable) @Nullable default Object getScanEnabled()
@Stability(value=Stable) @Nullable default String getTlsPolicy()
@Stability(value=Stable) static CfnReceiptRule.RuleProperty.Builder builder()
Copyright © 2021. All rights reserved.