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.

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.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to GetIdentityNotificationAttributesAsync.

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

Syntax

C#
public abstract GetIdentityNotificationAttributesResponse GetIdentityNotificationAttributes(
         GetIdentityNotificationAttributesRequest request
)

Parameters

request
Type: Amazon.SimpleEmail.Model.GetIdentityNotificationAttributesRequest

Container for the necessary parameters to execute the GetIdentityNotificationAttributes service method.

Return Value


The response from the GetIdentityNotificationAttributes service method, as returned by SimpleEmailService.

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 Framework:
Supported in: 4.5 and newer, 3.5

See Also