Interface CfnReceiptRuleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReceiptRuleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.573Z")
@Stability(Stable)
public interface CfnReceiptRuleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnReceiptRulePropsMixin.
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.*;
CfnReceiptRuleMixinProps cfnReceiptRuleMixinProps = CfnReceiptRuleMixinProps.builder()
.after("after")
.rule(RuleProperty.builder()
.actions(List.of(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()))
.enabled(false)
.name("name")
.recipients(List.of("recipients"))
.scanEnabled(false)
.tlsPolicy("tlsPolicy")
.build())
.ruleSetName("ruleSetName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReceiptRuleMixinPropsstatic final classAn implementation forCfnReceiptRuleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetAfter()The name of an existing rule after which the new rule is placed.default ObjectgetRule()A data structure that contains the specified rule's name, actions, recipients, domains, enabled status, scan status, and TLS policy.default StringThe name of the rule set where the receipt rule is added.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAfter
The name of an existing rule after which the new rule is placed.If this parameter is null, the new rule is inserted at the beginning of the rule list.
- See Also:
-
getRule
A data structure that contains the specified rule's name, actions, recipients, domains, enabled status, scan status, and TLS policy.Returns union: either
IResolvableorCfnReceiptRulePropsMixin.RuleProperty- See Also:
-
getRuleSetName
The name of the rule set where the receipt rule is added.- See Also:
-
builder
- Returns:
- a
CfnReceiptRuleMixinProps.BuilderofCfnReceiptRuleMixinProps
-