Skip to content

Get Deliverability Dashboard Options

sesv2_get_deliverability_dashboard_options R Documentation

Retrieve information about the status of the Deliverability dashboard for your account

Description

Retrieve information about the status of the Deliverability dashboard for your account. When the Deliverability dashboard is enabled, you gain access to reputation, deliverability, and other metrics for the domains that you use to send email. You also gain the ability to perform predictive inbox placement tests.

When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more information about the features and cost of a Deliverability dashboard subscription, see Amazon SES Pricing.

Usage

sesv2_get_deliverability_dashboard_options()

Value

A list with the following syntax:

list(
  DashboardEnabled = TRUE|FALSE,
  SubscriptionExpiryDate = as.POSIXct(
    "2015-01-01"
  ),
  AccountStatus = "ACTIVE"|"PENDING_EXPIRATION"|"DISABLED",
  ActiveSubscribedDomains = list(
    list(
      Domain = "string",
      SubscriptionStartDate = as.POSIXct(
        "2015-01-01"
      ),
      InboxPlacementTrackingOption = list(
        Global = TRUE|FALSE,
        TrackedIsps = list(
          "string"
        )
      )
    )
  ),
  PendingExpirationSubscribedDomains = list(
    list(
      Domain = "string",
      SubscriptionStartDate = as.POSIXct(
        "2015-01-01"
      ),
      InboxPlacementTrackingOption = list(
        Global = TRUE|FALSE,
        TrackedIsps = list(
          "string"
        )
      )
    )
  )
)

Request syntax

svc$get_deliverability_dashboard_options()