Interface CfnMailManagerRuleSet.BounceActionProperty

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

@Stability(Stable) public static interface CfnMailManagerRuleSet.BounceActionProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 BounceActionProperty bounceActionProperty = BounceActionProperty.builder()
         .diagnosticMessage("diagnosticMessage")
         .roleArn("roleArn")
         .sender("sender")
         .smtpReplyCode("smtpReplyCode")
         .statusCode("statusCode")
         // the properties below are optional
         .actionFailurePolicy("actionFailurePolicy")
         .message("message")
         .build();
 

See Also: