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 3.5
 
Container for the parameters to the SetIdentityDkimEnabled operation. Enables or disables Easy DKIM signing of email sent from an identity:

For email addresses (e.g., user@example.com), you can only enable Easy DKIM signing if the corresponding domain (e.g., example.com) has been set up for Easy DKIM using the AWS Console or the VerifyDomainDkim action.

This action is throttled at one request per second.

For more information about Easy DKIM signing, go to the Amazon SES Developer Guide.

Inheritance Hierarchy

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

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

Syntax

C#
public class SetIdentityDkimEnabledRequest : AmazonSimpleEmailServiceRequest
         IRequestEvents

The SetIdentityDkimEnabledRequest type exposes the following members

Constructors

Properties

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

Sets whether DKIM signing is enabled for an identity. Set to true to enable DKIM signing for this identity; false to disable it.

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

The identity for which DKIM signing should be enabled or disabled.

Examples

This example shows how to specify whether Easy DKIM signing of email sent from an identity is enabled.

Set DKIM identity example

var sesClient = new AmazonSimpleEmailServiceClient();

var request = new SetIdentityDkimEnabledRequest
{
  DkimEnabled = false,
  Identity = "johndoe@example.com"
};

sesClient.SetIdentityDkimEnabled(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