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.

Container for the parameters to the VerifyDomainIdentity operation. Adds a domain to the list of identities for your Amazon SES account in the current Amazon Web Services Region and attempts to verify it. For more information about verifying domains, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Inheritance Hierarchy

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

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

Syntax

C#
public class VerifyDomainIdentityRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The VerifyDomainIdentityRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Domain System.String

Gets and sets the property Domain.

The domain to be verified.

Examples

The following example starts the domain verification process with Amazon SES:

VerifyDomainIdentity


var client = new AmazonSimpleEmailServiceClient();
var response = client.VerifyDomainIdentity(new VerifyDomainIdentityRequest 
{
    Domain = "example.com"
});

string verificationToken = response.VerificationToken;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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