- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
SetIdentityDkimEnabledCommand
Enables or disables Easy DKIM signing of email sent from an identity. If Easy DKIM signing is enabled for a domain, then Amazon SES uses DKIM to sign all email that it sends from addresses on that domain. If Easy DKIM signing is enabled for an email address, then Amazon SES uses DKIM to sign all email it sends from that address.
For email addresses (for example, userexample.com
), you can only enable DKIM signing if the corresponding domain (in this case, example.com
) has been set up to use Easy DKIM.
You can enable DKIM signing for an identity at any time after you start the verification process for the identity, even if the verification process isn't complete.
You can execute this operation no more than once per second.
For more information about Easy DKIM signing, go to the Amazon SES Developer Guide .
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { SESClient, SetIdentityDkimEnabledCommand } from "@aws-sdk/client-ses"; // ES Modules import
// const { SESClient, SetIdentityDkimEnabledCommand } = require("@aws-sdk/client-ses"); // CommonJS import
const client = new SESClient(config);
const input = { // SetIdentityDkimEnabledRequest
Identity: "STRING_VALUE", // required
DkimEnabled: true || false, // required
};
const command = new SetIdentityDkimEnabledCommand(input);
const response = await client.send(command);
// {};
Example Usage
SetIdentityDkimEnabledCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
DkimEnabled Required | boolean | undefined | Sets whether DKIM signing is enabled for an identity. Set to |
Identity Required | string | undefined | The identity for which DKIM signing should be enabled or disabled. |
SetIdentityDkimEnabledCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
SESServiceException | Base exception class for all service exceptions from SES service. |