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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerRuleSet.AddHeaderActionPropertystatic final classAn implementation forCfnMailManagerRuleSet.AddHeaderActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the header to add to an email.The value of the header to add to the email.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
-