Interface CfnMailManagerRuleSet.RelayActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMailManagerRuleSet.RelayActionProperty.Jsii$Proxy
Enclosing class:
CfnMailManagerRuleSet

@Stability(Stable) public static interface CfnMailManagerRuleSet.RelayActionProperty extends software.amazon.jsii.JsiiSerializable
The action relays the email via SMTP to another specific SMTP server.

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.*;
 RelayActionProperty relayActionProperty = RelayActionProperty.builder()
         .relay("relay")
         // the properties below are optional
         .actionFailurePolicy("actionFailurePolicy")
         .mailFrom("mailFrom")
         .build();
 

See Also: