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 4.5
 
Container for the parameters to the GetIdentityVerificationAttributes operation. Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity.

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

Inheritance Hierarchy

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

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

Syntax

C#
public class GetIdentityVerificationAttributesRequest : AmazonSimpleEmailServiceRequest
         IRequestEvents

The GetIdentityVerificationAttributesRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Identities System.Collections.Generic.List<System.String> Gets and sets the property Identities.

A list of identities.

Examples

This example shows how to get information about verification attributes for identities (email addresses and domains).

Get verification attributes example

var sesClient = new AmazonSimpleEmailServiceClient();

var idsResponse = sesClient.ListIdentities();

if (idsResponse.Identities.Count > 0)
{
  var request = new GetIdentityVerificationAttributesRequest
  {
    Identities = idsResponse.Identities
  };

  var response = sesClient.GetIdentityVerificationAttributes(request);

  foreach (var attr in response.VerificationAttributes)
  {
    Console.WriteLine(attr.Key);
    Console.WriteLine("  Verification Status: " + 
      attr.Value.VerificationStatus.Value);
    Console.WriteLine("  Verification Token: " + 
      attr.Value.VerificationToken);
    Console.WriteLine();
  }
};
      

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