Show / Hide Table of Contents

Class CfnConfigurationSet.TrackingOptionsProperty

An object that defines the tracking options for a configuration set.

Inheritance
object
CfnConfigurationSet.TrackingOptionsProperty
Implements
CfnConfigurationSet.ITrackingOptionsProperty
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 CfnConfigurationSet.TrackingOptionsProperty : CfnConfigurationSet.ITrackingOptionsProperty
Syntax (vb)
Public Class CfnConfigurationSet.TrackingOptionsProperty Implements CfnConfigurationSet.ITrackingOptionsProperty
Remarks

When you use the Amazon SES API v2 to send an email, it contains an invisible image that's used to track when recipients open your email. If your email contains links, those links are changed slightly in order to track when recipients click them.

You can optionally configure a custom subdomain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.

For more information, see Configuring Custom Domains to Handle Open and Click Tracking in the Amazon SES Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.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 trackingOptionsProperty = new TrackingOptionsProperty {
                 CustomRedirectDomain = "customRedirectDomain",
                 HttpsPolicy = "httpsPolicy"
             };

Synopsis

Constructors

TrackingOptionsProperty()

An object that defines the tracking options for a configuration set.

Properties

CustomRedirectDomain

The custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.

HttpsPolicy

The https policy to use for tracking open and click events.

Constructors

TrackingOptionsProperty()

An object that defines the tracking options for a configuration set.

public TrackingOptionsProperty()
Remarks

When you use the Amazon SES API v2 to send an email, it contains an invisible image that's used to track when recipients open your email. If your email contains links, those links are changed slightly in order to track when recipients click them.

You can optionally configure a custom subdomain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.

For more information, see Configuring Custom Domains to Handle Open and Click Tracking in the Amazon SES Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.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 trackingOptionsProperty = new TrackingOptionsProperty {
                 CustomRedirectDomain = "customRedirectDomain",
                 HttpsPolicy = "httpsPolicy"
             };

Properties

CustomRedirectDomain

The custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.

public string? CustomRedirectDomain { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html#cfn-ses-configurationset-trackingoptions-customredirectdomain

HttpsPolicy

The https policy to use for tracking open and click events.

public string? HttpsPolicy { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html#cfn-ses-configurationset-trackingoptions-httpspolicy

Implements

CfnConfigurationSet.ITrackingOptionsProperty
Back to top Generated by DocFX