Show / Hide Table of Contents

Class CfnMailManagerRuleSet.AddHeaderActionProperty

The action to add a header to a message.

Inheritance
object
CfnMailManagerRuleSet.AddHeaderActionProperty
Implements
CfnMailManagerRuleSet.IAddHeaderActionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerRuleSet.AddHeaderActionProperty : CfnMailManagerRuleSet.IAddHeaderActionProperty
Syntax (vb)
Public Class CfnMailManagerRuleSet.AddHeaderActionProperty Implements CfnMailManagerRuleSet.IAddHeaderActionProperty
Remarks

When executed, this action will add the given header to the message.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-addheaderaction.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var addHeaderActionProperty = new AddHeaderActionProperty {
                 HeaderName = "headerName",
                 HeaderValue = "headerValue"
             };

Synopsis

Constructors

AddHeaderActionProperty()

The action to add a header to a message.

Properties

HeaderName

The name of the header to add to an email.

HeaderValue

The value of the header to add to the email.

Constructors

AddHeaderActionProperty()

The action to add a header to a message.

public AddHeaderActionProperty()
Remarks

When executed, this action will add the given header to the message.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-addheaderaction.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var addHeaderActionProperty = new AddHeaderActionProperty {
                 HeaderName = "headerName",
                 HeaderValue = "headerValue"
             };

Properties

HeaderName

The name of the header to add to an email.

public string HeaderName { get; set; }
Property Value

string

Remarks

The header must be prefixed with "X-". Headers are added regardless of whether the header name pre-existed in the email.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-addheaderaction.html#cfn-ses-mailmanagerruleset-addheaderaction-headername

HeaderValue

The value of the header to add to the email.

public string HeaderValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-addheaderaction.html#cfn-ses-mailmanagerruleset-addheaderaction-headervalue

Implements

CfnMailManagerRuleSet.IAddHeaderActionProperty
Back to top Generated by DocFX