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.

Given an identity (an email address or a 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.

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.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to SetIdentityFeedbackForwardingEnabledAsync.

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

Syntax

C#
public abstract SetIdentityFeedbackForwardingEnabledResponse SetIdentityFeedbackForwardingEnabled(
         SetIdentityFeedbackForwardingEnabledRequest request
)

Parameters

request
Type: Amazon.SimpleEmail.Model.SetIdentityFeedbackForwardingEnabledRequest

Container for the necessary parameters to execute the SetIdentityFeedbackForwardingEnabled service method.

Return Value


The response from the SetIdentityFeedbackForwardingEnabled service method, as returned by SimpleEmailService.

Examples

The following example configures Amazon SES to forward an identity's bounces and complaints via email:

SetIdentityFeedbackForwardingEnabled


var client = new AmazonSimpleEmailServiceClient();
var response = client.SetIdentityFeedbackForwardingEnabled(new SetIdentityFeedbackForwardingEnabledRequest 
{
    ForwardingEnabled = true,
    Identity = "user@example.com"
});


            

Version Information

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

See Also