aws-cdk-lib.aws_ses.AddHeaderActionConfig

interface AddHeaderActionConfig

LanguageType name
.NETAmazon.CDK.AWS.SES.AddHeaderActionConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#AddHeaderActionConfig
Javasoftware.amazon.awscdk.services.ses.AddHeaderActionConfig
Pythonaws_cdk.aws_ses.AddHeaderActionConfig
TypeScript (source)aws-cdk-lib » aws_ses » AddHeaderActionConfig

AddHeaderAction configuration.

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 addHeaderActionConfig: ses.AddHeaderActionConfig = {
  headerName: 'headerName',
  headerValue: 'headerValue',
};

Properties

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

headerName

Type: string

The name of the header that you want to add to the incoming message.


headerValue

Type: string

The content that you want to include in the header.