AWS SDK Version 2 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.

.NET Framework 4.5
 
Container for the parameters to the SetIdentityNotificationTopic operation. Given an identity (email address or domain), sets the Amazon Simple Notification Service (Amazon SNS) topic to which Amazon SES will publish bounce, complaint, and/or delivery notifications for emails sent with that identity as the Source. Unless feedback forwarding is enabled, you must specify Amazon SNS topics for bounce and complaint notifications. For more information, see SetIdentityFeedbackForwardingEnabled.

This action is throttled at one request per second.

For more information about feedback notification, see the Amazon SES Developer Guide.

Inheritance Hierarchy

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

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public class SetIdentityNotificationTopicRequest : AmazonSimpleEmailServiceRequest
         IRequestEvents

The SetIdentityNotificationTopicRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Identity System.String Gets and sets the property Identity.

The identity for which the Amazon SNS topic will be set. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

Public Property NotificationType Amazon.SimpleEmail.NotificationType Gets and sets the property NotificationType.

The type of notifications that will be published to the specified Amazon SNS topic.

Public Property SnsTopic System.String Gets and sets the property SnsTopic.

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is omitted from the request or a null value is passed, SnsTopic is cleared and publishing is disabled.

Examples

This example shows how to set notification topics for an identity (email address or domain).

Set notification topics example

var sesClient = new AmazonSimpleEmailServiceClient();

var bounceRequest = new SetIdentityNotificationTopicRequest
{
  Identity = "johndoe@example.com",
  NotificationType = NotificationType.Bounce,
  SnsTopic = "arn:aws:sns:us-east-1:80398EXAMPLE:CodingTestResults"
};

sesClient.SetIdentityNotificationTopic(bounceRequest);

var complaintRequest = new SetIdentityNotificationTopicRequest
{
  Identity = "johndoe@example.com",
  NotificationType = NotificationType.Complaint,
  SnsTopic = "arn:aws:sns:us-east-1:80398EXAMPLE:CodingTestResults"
};

sesClient.SetIdentityNotificationTopic(complaintRequest);
      

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

.NET for Windows Store apps:
Supported in: Windows 8.1, Windows 8

.NET for Windows Phone:
Supported in: Windows Phone 8.1, Windows Phone 8