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 GetIdentityNotificationAttributes operation. Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.

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

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

Inheritance Hierarchy

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

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

Syntax

C#
public class GetIdentityNotificationAttributesRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The GetIdentityNotificationAttributesRequest 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 one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

Examples

The following example returns the notification attributes for an identity:

GetIdentityNotificationAttributes


var client = new AmazonSimpleEmailServiceClient();
var response = client.GetIdentityNotificationAttributes(new GetIdentityNotificationAttributesRequest 
{
    Identities = new List<string> {
        "example.com"
    }
});

Dictionary<string, IdentityNotificationAttributes> notificationAttributes = response.NotificationAttributes;

            

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