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.

Returns the current status of Easy DKIM signing for an entity. For domain name identities, this operation also returns the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES has successfully verified that these tokens have been published.

This operation takes a list of identities as input and returns the following information for each:

This operation is throttled at one request per second and can only get DKIM attributes for up to 100 identities at a time.

For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.

Note:

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

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

Syntax

C#
public abstract GetIdentityDkimAttributesResponse GetIdentityDkimAttributes(
         GetIdentityDkimAttributesRequest request
)

Parameters

request
Type: Amazon.SimpleEmail.Model.GetIdentityDkimAttributesRequest

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

Return Value


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

Examples

The following example retrieves the Amazon SES Easy DKIM attributes for a list of identities:

GetIdentityDkimAttributes


var client = new AmazonSimpleEmailServiceClient();
var response = client.GetIdentityDkimAttributes(new GetIdentityDkimAttributesRequest 
{
    Identities = new List<string> {
        "example.com",
        "user@example.com"
    }
});

Dictionary<string, IdentityDkimAttributes> dkimAttributes = response.DkimAttributes;

            

Version Information

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

See Also