Interface CfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerRuleSetPropsMixin
@Stability(Stable)
public static interface CfnMailManagerRuleSetPropsMixin.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.cfnpropertymixins.services.ses.*;
AddHeaderActionProperty addHeaderActionProperty = AddHeaderActionProperty.builder()
.headerName("headerName")
.headerValue("headerValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerRuleSetPropsMixin.AddHeaderActionPropertystatic final classAn implementation forCfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeaderName
The name of the header to add to an email.The header must be prefixed with "X-". Headers are added regardless of whether the header name pre-existed in the email.
- See Also:
-
getHeaderValue
The value of the header to add to the email.- See Also:
-
builder
-