Interface DropSpamReceiptRuleProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,ReceiptRuleOptions
,ReceiptRuleProps
- All Known Implementing Classes:
DropSpamReceiptRuleProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.804Z")
@Stability(Stable)
public interface DropSpamReceiptRuleProps
extends software.amazon.jsii.JsiiSerializable, ReceiptRuleProps
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.*; ReceiptRule receiptRule; IReceiptRuleAction receiptRuleAction; ReceiptRuleSet receiptRuleSet; DropSpamReceiptRuleProps dropSpamReceiptRuleProps = DropSpamReceiptRuleProps.builder() .ruleSet(receiptRuleSet) // the properties below are optional .actions(List.of(receiptRuleAction)) .after(receiptRule) .enabled(false) .receiptRuleName("receiptRuleName") .recipients(List.of("recipients")) .scanEnabled(false) .tlsPolicy(TlsPolicy.OPTIONAL) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forDropSpamReceiptRuleProps
static final class
An implementation forDropSpamReceiptRuleProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.ses.ReceiptRuleOptions
getActions, getAfter, getEnabled, getReceiptRuleName, getRecipients, getScanEnabled, getTlsPolicy
Methods inherited from interface software.amazon.awscdk.services.ses.ReceiptRuleProps
getRuleSet
-
Method Details
-
builder
- Returns:
- a
DropSpamReceiptRuleProps.Builder
ofDropSpamReceiptRuleProps
-