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

ListSuppressedDestinationsRequest

import type { ListSuppressedDestinationsRequest } from "https://aws-api.deno.dev/v0.4/services/sesv2.ts?docs=full";

A request to obtain a list of email destinations that are on the suppression list for your account.

interface ListSuppressedDestinationsRequest {
EndDate?: Date | number | null;
NextToken?: string | null;
PageSize?: number | null;
Reasons?: SuppressionListReason[] | null;
StartDate?: Date | number | null;
}

§Properties

§
EndDate?: Date | number | null
[src]

Used to filter the list of suppressed email destinations so that it only includes addresses that were added to the list before a specific date.

§
NextToken?: string | null
[src]

A token returned from a previous call to ListSuppressedDestinations to indicate the position in the list of suppressed email addresses.

§
PageSize?: number | null
[src]

The number of results to show in a single call to ListSuppressedDestinations. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results.

§
Reasons?: SuppressionListReason[] | null
[src]

The factors that caused the email address to be added to .

§
StartDate?: Date | number | null
[src]

Used to filter the list of suppressed email destinations so that it only includes addresses that were added to the list after a specific date.