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