Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.SetIdentityFeedbackForwardingEnabled C# (CSharp) Метод

SetIdentityFeedbackForwardingEnabled() публичный Метод

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.

This action is throttled at one request per second.

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

public SetIdentityFeedbackForwardingEnabled ( SetIdentityFeedbackForwardingEnabledRequest request ) : SetIdentityFeedbackForwardingEnabledResponse
request SetIdentityFeedbackForwardingEnabledRequest Container for the necessary parameters to execute the SetIdentityFeedbackForwardingEnabled service method.
Результат SetIdentityFeedbackForwardingEnabledResponse
        public SetIdentityFeedbackForwardingEnabledResponse SetIdentityFeedbackForwardingEnabled(SetIdentityFeedbackForwardingEnabledRequest request)
        {
            var marshaller = new SetIdentityFeedbackForwardingEnabledRequestMarshaller();
            var unmarshaller = SetIdentityFeedbackForwardingEnabledResponseUnmarshaller.Instance;

            return Invoke<SetIdentityFeedbackForwardingEnabledRequest,SetIdentityFeedbackForwardingEnabledResponse>(request, marshaller, unmarshaller);
        }

Usage Example

Пример #1
0
    public static void SESSetIdentityFeedbackForwardingEnabled()
    {
      #region SESSetIdentityFeedbackForwardingEnabled
      var sesClient = new AmazonSimpleEmailServiceClient();

      var request = new SetIdentityFeedbackForwardingEnabledRequest
      {
        ForwardingEnabled = true,
        Identity = "*****@*****.**"
      };

      sesClient.SetIdentityFeedbackForwardingEnabled(request);
      #endregion
    }
AmazonSimpleEmailServiceClient