AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the SetIdentityHeadersInNotificationsEnabled operation. Given an identity (an email address or a domain), sets whether Amazon SES includes the original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified type.

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SimpleEmail.AmazonSimpleEmailServiceRequest
      Amazon.SimpleEmail.Model.SetIdentityHeadersInNotificationsEnabledRequest

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z

Syntax

C#
public class SetIdentityHeadersInNotificationsEnabledRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The SetIdentityHeadersInNotificationsEnabledRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Enabled System.Boolean

Gets and sets the property Enabled.

Sets whether Amazon SES includes the original email headers in Amazon SNS notifications of the specified notification type. A value of true specifies that Amazon SES includes headers in notifications, and a value of false specifies that Amazon SES does not include headers in notifications.

This value can only be set when NotificationType is already set to use a particular Amazon SNS topic.

Public Property Identity System.String

Gets and sets the property Identity.

The identity for which to enable or disable headers in notifications. Examples: user@example.com, example.com.

Public Property NotificationType Amazon.SimpleEmail.NotificationType

Gets and sets the property NotificationType.

The notification type for which to enable or disable headers in notifications.

Examples

The following example configures Amazon SES to include the original email headers in the Amazon SNS bounce notifications for an identity:

SetIdentityHeadersInNotificationsEnabled


var client = new AmazonSimpleEmailServiceClient();
var response = client.SetIdentityHeadersInNotificationsEnabled(new SetIdentityHeadersInNotificationsEnabledRequest 
{
    Enabled = true,
    Identity = "user@example.com",
    NotificationType = "Bounce"
});


            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5