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 SetIdentityFeedbackForwardingEnabled operation. Given an identity (email address or domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints. Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS.

This action is throttled at one request 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.SetIdentityFeedbackForwardingEnabledRequest

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

Syntax

C#
public class SetIdentityFeedbackForwardingEnabledRequest : AmazonSimpleEmailServiceRequest
         IRequestEvents

The SetIdentityFeedbackForwardingEnabledRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ForwardingEnabled System.Boolean Gets and sets the property ForwardingEnabled.

Sets whether Amazon SES will forward bounce and complaint notifications as email. true specifies that Amazon SES will forward bounce and complaint notifications as email, in addition to any Amazon SNS topic publishing otherwise specified. false specifies that Amazon SES will publish bounce and complaint notifications only through Amazon SNS. This value can only be set to false when Amazon SNS topics are set for both Bounce and Complaint notification types.

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

The identity for which to set bounce and complaint notification forwarding. Examples: user@example.com, example.com.

Examples

This example shows how to set whether forwarding and bounce notifications are forwarded as email.

Set notification forwarding example

var sesClient = new AmazonSimpleEmailServiceClient();

var request = new SetIdentityFeedbackForwardingEnabledRequest
{
  ForwardingEnabled = true,
  Identity = "johndoe@example.com"
};

sesClient.SetIdentityFeedbackForwardingEnabled(request);
      

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