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.
Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.dll
Version: (assembly version)
public class GetIdentityVerificationAttributesResponse : GetIdentityVerificationAttributesResult
The GetIdentityVerificationAttributesResponse type exposes the following members
| Name | Description | |
|---|---|---|
|
GetIdentityVerificationAttributesResponse() |
| Name | Type | Description | |
|---|---|---|---|
|
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
GetIdentityVerificationAttributesResult | Amazon.SimpleEmail.Model.GetIdentityVerificationAttributesResult | Gets and sets the GetIdentityVerificationAttributesResult property. Represents the output of a GetIdentityVerificationAttributes operation. |
|
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
VerificationAttributes | System.Collections.Generic.Dictionary<System.String, Amazon.SimpleEmail.Model.IdentityVerificationAttributes> |
Gets and sets the property VerificationAttributes.
A map of Identities to IdentityVerificationAttributes objects. |
This example shows how to get information about verification attributes for identities (email addresses and domains).
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();
}
};
.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