Interface CfnMailManagerRuleSetPropsMixin.SnsActionProperty

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

@Stability(Stable) public static interface CfnMailManagerRuleSetPropsMixin.SnsActionProperty extends software.amazon.jsii.JsiiSerializable
The action to publish the email content to an Amazon SNS topic.

When executed, this action will send the email as a notification to the specified SNS topic.

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.*;
 SnsActionProperty snsActionProperty = SnsActionProperty.builder()
         .actionFailurePolicy("actionFailurePolicy")
         .encoding("encoding")
         .payloadType("payloadType")
         .roleArn("roleArn")
         .topicArn("topicArn")
         .build();
 

See Also: