Show / Hide Table of Contents

Class CfnReceiptRule.AddHeaderActionProperty

When included in a receipt rule, this action adds a header to the received email.

Inheritance
object
CfnReceiptRule.AddHeaderActionProperty
Implements
CfnReceiptRule.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 CfnReceiptRule.AddHeaderActionProperty : CfnReceiptRule.IAddHeaderActionProperty
Syntax (vb)
Public Class CfnReceiptRule.AddHeaderActionProperty Implements CfnReceiptRule.IAddHeaderActionProperty
Remarks

For information about adding a header using a receipt rule, see the Amazon SES Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-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()

When included in a receipt rule, this action adds a header to the received email.

Properties

HeaderName

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

HeaderValue

The content to include in the header.

Constructors

AddHeaderActionProperty()

When included in a receipt rule, this action adds a header to the received email.

public AddHeaderActionProperty()
Remarks

For information about adding a header using a receipt rule, see the Amazon SES Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-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 the incoming message.

public string HeaderName { get; set; }
Property Value

string

Remarks

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.

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

HeaderValue

The content to include in the header.

public string HeaderValue { get; set; }
Property Value

string

Remarks

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

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

Implements

CfnReceiptRule.IAddHeaderActionProperty
Back to top Generated by DocFX