Retrieve deliverability data for all the campaigns that used a specific domain to send
email during a specified time range. This data is available for a domain only if you
enabled the Deliverability dashboard (PutDeliverabilityDashboardOption operation)
for the domain.
example
Use a bare-bones client and the command you need to make an API call.
Retrieve deliverability data for all the campaigns that used a specific domain to send email during a specified time range. This data is available for a domain only if you enabled the Deliverability dashboard (
PutDeliverabilityDashboardOption
operation) for the domain.Use a bare-bones client and the command you need to make an API call.
import { PinpointEmailClient, ListDomainDeliverabilityCampaignsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import // const { PinpointEmailClient, ListDomainDeliverabilityCampaignsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import const client = new PinpointEmailClient(config); const command = new ListDomainDeliverabilityCampaignsCommand(input); const response = await client.send(command);
ListDomainDeliverabilityCampaignsCommandInput for command's
input
shape.ListDomainDeliverabilityCampaignsCommandOutput for command's
response
shape.config for PinpointEmailClient's
config
shape.