Skip to content

Put Deliverability Dashboard Option

sesv2_put_deliverability_dashboard_option R Documentation

Enable or disable the Deliverability dashboard

Description

Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, 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_put_deliverability_dashboard_option(DashboardEnabled,
  SubscribedDomains)

Arguments

DashboardEnabled

[required] Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this value to true.

SubscribedDomains

An array of objects, one for each verified domain that you use to send email and enabled the Deliverability dashboard for.

Value

An empty list.

Request syntax

svc$put_deliverability_dashboard_option(
  DashboardEnabled = TRUE|FALSE,
  SubscribedDomains = list(
    list(
      Domain = "string",
      SubscriptionStartDate = as.POSIXct(
        "2015-01-01"
      ),
      InboxPlacementTrackingOption = list(
        Global = TRUE|FALSE,
        TrackedIsps = list(
          "string"
        )
      )
    )
  )
)