Skip to main content

deliverability_dashboard_options

Creates, updates, deletes, gets or lists a deliverability_dashboard_options resource.

Overview

Namedeliverability_dashboard_options
TypeResource
Idaws.sesv2.deliverability_dashboard_options

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_statusstringThe current status of your Deliverability dashboard subscription. If this value is PENDING_EXPIRATION, your subscription is scheduled to expire at the end of the current calendar month. (ACTIVE, PENDING_EXPIRATION, DISABLED)
active_subscribed_domainsarrayAn array of objects, one for each verified domain that you use to send email and currently has an active Deliverability dashboard subscription that isn’t scheduled to expire at the end of the current calendar month.
dashboard_enabledbooleanSpecifies whether the Deliverability dashboard is enabled. If this value is true, the dashboard is enabled.
pending_expiration_subscribed_domainsarrayAn array of objects, one for each verified domain that you use to send email and currently has an active Deliverability dashboard subscription that's scheduled to expire at the end of the current calendar month.
subscription_expiry_datestring (date-time)The date when your current subscription to the Deliverability dashboard is scheduled to expire, if your subscription is scheduled to expire at the end of the current calendar month. This value is null if you have an active subscription that isn’t due to expire at the end of the month.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_deliverability_dashboard_optionsselectregionRetrieve 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.
put_deliverability_dashboard_optionreplaceregion, DashboardEnabledEnable 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
account_status,
active_subscribed_domains,
dashboard_enabled,
pending_expiration_subscribed_domains,
subscription_expiry_date
FROM aws.sesv2.deliverability_dashboard_options
WHERE region = '{{ region }}' -- required
;

REPLACE examples

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.

REPLACE aws.sesv2.deliverability_dashboard_options
SET
DashboardEnabled = {{ DashboardEnabled }},
SubscribedDomains = '{{ SubscribedDomains }}'
WHERE
region = '{{ region }}' --required
AND DashboardEnabled = {{ DashboardEnabled }} --required;