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.

A list of all identities that you have attempted to verify under your Amazon Web Services account, regardless of verification status.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.SimpleEmail.Model.ListIdentitiesResponse

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

Syntax

C#
public class ListIdentitiesResponse : AmazonWebServiceResponse

The ListIdentitiesResponse type exposes the following members

Constructors

NameDescription
Public Method ListIdentitiesResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Identities System.Collections.Generic.List<System.String>

Gets and sets the property Identities.

A list of identities.

Public Property NextToken System.String

Gets and sets the property NextToken.

The token used for pagination.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

The following example lists the email address identities that have been submitted for verification with Amazon SES:

ListIdentities


var client = new AmazonSimpleEmailServiceClient();
var response = client.ListIdentities(new ListIdentitiesRequest 
{
    IdentityType = "EmailAddress",
    MaxItems = 123,
    NextToken = ""
});

List<string> identities = response.Identities;
string nextToken = response.NextToken;

            

Version Information

.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