Interface CfnReceiptRule.AddHeaderActionProperty

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

@Stability(Stable) public static interface CfnReceiptRule.AddHeaderActionProperty extends software.amazon.jsii.JsiiSerializable
When included in a receipt rule, this action adds a header to the received email.

For information about adding a header using a receipt rule, see the Amazon SES Developer Guide .

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();