Interface CfnMailManagerRuleSet.AddHeaderActionProperty

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

@Stability(Stable) public static interface CfnMailManagerRuleSet.AddHeaderActionProperty extends software.amazon.jsii.JsiiSerializable
The action to add a header to a message.

When executed, this action will add the given header to the message.

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.*;
 AddHeaderActionProperty addHeaderActionProperty = AddHeaderActionProperty.builder()
         .headerName("headerName")
         .headerValue("headerValue")
         .build();
 

See Also: