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.
Source.
SetIdentityFeedbackForwardingEnabled.
This action is throttled at one request per second.
For more information about feedback notification, see the Amazon SES Developer Guide.
Namespace: Amazon.SimpleEmail
Assembly: AWSSDK.dll
Version: (assembly version)
public virtual SetIdentityNotificationTopicResponse SetIdentityNotificationTopic( SetIdentityNotificationTopicRequest request )
Container for the necessary parameters to execute the SetIdentityNotificationTopic service method.
This example shows how to set notification topics for an identity (email address or domain).
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);
.NET Framework:
Supported in: 4.5, 4.0, 3.5