Skip to content

Get Identity Notification Attributes

ses_get_identity_notification_attributes R Documentation

Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes

Description

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.

Usage

ses_get_identity_notification_attributes(Identities)

Arguments

Identities

[required] 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.

Value

A list with the following syntax:

list(
  NotificationAttributes = list(
    list(
      BounceTopic = "string",
      ComplaintTopic = "string",
      DeliveryTopic = "string",
      ForwardingEnabled = TRUE|FALSE,
      HeadersInBounceNotificationsEnabled = TRUE|FALSE,
      HeadersInComplaintNotificationsEnabled = TRUE|FALSE,
      HeadersInDeliveryNotificationsEnabled = TRUE|FALSE
    )
  )
)

Request syntax

svc$get_identity_notification_attributes(
  Identities = list(
    "string"
  )
)

Examples

## Not run: 
# The following example returns the notification attributes for an
# identity:
svc$get_identity_notification_attributes(
  Identities = list(
    "example.com"
  )
)

## End(Not run)