Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListDomainDeliverabilityCampaignsRequest

import type { ListDomainDeliverabilityCampaignsRequest } from "https://aws-api.deno.dev/v0.3/services/pinpointemail.ts?docs=full";

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.

interface ListDomainDeliverabilityCampaignsRequest {
EndDate: Date | number;
NextToken?: string | null;
PageSize?: number | null;
StartDate: Date | number;
SubscribedDomain: string;
}

§Properties

§
EndDate: Date | number
[src]

The last day, in Unix time format, that you want to obtain deliverability data for. This value has to be less than or equal to 30 days after the value of the StartDate parameter.

§
NextToken?: string | null
[src]

A token that’s returned from a previous call to the ListDomainDeliverabilityCampaigns operation. This token indicates the position of a campaign in the list of campaigns.

§
PageSize?: number | null
[src]

The maximum number of results to include in response to a single call to the ListDomainDeliverabilityCampaigns operation. If the number of results is larger than the number that you specify in this parameter, the response includes a NextToken element, which you can use to obtain additional results.

§
StartDate: Date | number
[src]

The first day, in Unix time format, that you want to obtain deliverability data for.

§
SubscribedDomain: string
[src]

The domain to obtain deliverability data for.