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.
Container for the parameters to the GetIdentityDkimAttributes operation. 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:
Whether Easy DKIM signing is enabled or disabled.
A set of DKIM tokens that represent the identity. If the identity is an email address, the tokens represent the domain of that address.
Whether Amazon SES has successfully verified the DKIM tokens published in the domain's DNS. This information is only returned for domain name identities, not for email addresses.
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.
Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z
public class GetIdentityDkimAttributesRequest : AmazonSimpleEmailServiceRequest IAmazonWebServiceRequest
The GetIdentityDkimAttributesRequest type exposes the following members
Name | Description | |
---|---|---|
GetIdentityDkimAttributesRequest() |
Name | Type | Description | |
---|---|---|---|
Identities | System.Collections.Generic.List<System.String> |
Gets and sets the property Identities. A list of one or more verified identities - email addresses, domains, or both. |
The following example retrieves the Amazon SES Easy DKIM attributes for a list of identities:
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;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5