Interface EmailForwardingRuleSetProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmailForwardingRuleSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.59.0 (build eb02c92)", date="2022-06-01T13:32:59.408Z") @Stability(Stable) public interface EmailForwardingRuleSetProps extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classEmailForwardingRuleSetProps.BuilderA builder forEmailForwardingRuleSetPropsstatic classEmailForwardingRuleSetProps.Jsii$ProxyAn implementation forEmailForwardingRuleSetProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static EmailForwardingRuleSetProps.Builderbuilder()List<EmailForwardingProps>getEmailForwardingProps()A list of mapping options to define how emails should be forwarded.default BooleangetEnableRuleSet()Optional: whether to enable the rule set or not.default software.amazon.awscdk.services.ses.IReceiptRuleSetgetRuleSet()Optional: an existing SES receipt rule set.default StringgetRuleSetName()Optional: provide a name for the receipt rule set that this construct creates if you don't provide one.
-
-
-
Method Detail
-
getEmailForwardingProps
@Stability(Stable) @NotNull List<EmailForwardingProps> getEmailForwardingProps()
A list of mapping options to define how emails should be forwarded.
-
getEnableRuleSet
@Stability(Stable) @Nullable default Boolean getEnableRuleSet()
Optional: whether to enable the rule set or not.Default: true
-
getRuleSet
@Stability(Stable) @Nullable default software.amazon.awscdk.services.ses.IReceiptRuleSet getRuleSet()
Optional: an existing SES receipt rule set.If none is provided, a new one will be created using the name provided with
ruleSetNameor a default one.
-
getRuleSetName
@Stability(Stable) @Nullable default String getRuleSetName()
Optional: provide a name for the receipt rule set that this construct creates if you don't provide one.Default: custom-rule-set
-
builder
@Stability(Stable) static EmailForwardingRuleSetProps.Builder builder()
-
-