aws-cdk-lib.aws_ses.CfnReceiptRule.AddHeaderActionProperty

interface AddHeaderActionProperty

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnReceiptRule.AddHeaderActionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnReceiptRule_AddHeaderActionProperty
Javasoftware.amazon.awscdk.services.ses.CfnReceiptRule.AddHeaderActionProperty
Pythonaws_cdk.aws_ses.CfnReceiptRule.AddHeaderActionProperty
TypeScript aws-cdk-lib » aws_ses » CfnReceiptRule » AddHeaderActionProperty

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 { aws_ses as ses } from 'aws-cdk-lib';
const addHeaderActionProperty: ses.CfnReceiptRule.AddHeaderActionProperty = {
  headerName: 'headerName',
  headerValue: 'headerValue',
};

Properties

NameTypeDescription
headerNamestringThe name of the header to add to the incoming message.
headerValuestringThe content to include in the header.

headerName

Type: string

The name of the header to add to the incoming message.

The name must contain at least one character, and can contain up to 50 characters. It consists of alphanumeric (a–z, A–Z, 0–9) characters and dashes.


headerValue

Type: string

The content to include in the header.

This value can contain up to 2048 characters. It can't contain newline ( \n ) or carriage return ( \r ) characters.