interface AddHeaderActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerRuleSetPropsMixin_AddHeaderActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnMailManagerRuleSetPropsMixin » AddHeaderActionProperty |
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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const addHeaderActionProperty: ses.CfnMailManagerRuleSetPropsMixin.AddHeaderActionProperty = {
headerName: 'headerName',
headerValue: 'headerValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| header | string | The name of the header to add to an email. |
| header | string | The value of the header to add to the email. |
headerName?
Type:
string
(optional)
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.
headerValue?
Type:
string
(optional)
The value of the header to add to the email.

.NET
Go
Java
Python
TypeScript