interface AddHeaderActionConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.AddHeaderActionConfig |
Java | software.amazon.awscdk.services.ses.AddHeaderActionConfig |
Python | aws_cdk.aws_ses.AddHeaderActionConfig |
TypeScript (source) | @aws-cdk/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 * as ses from '@aws-cdk/aws-ses';
const addHeaderActionConfig: ses.AddHeaderActionConfig = {
headerName: 'headerName',
headerValue: 'headerValue',
};
Properties
Name | Type | Description |
---|---|---|
header | string | The name of the header that you want to add to the incoming message. |
header | string | The 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.