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

ListRecommendationsRequest

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

Represents a request to list the existing recommendations for your account.

interface ListRecommendationsRequest {
Filter?: [key in ListRecommendationsFilterKey]: string | null | undefined | null;
NextToken?: string | null;
PageSize?: number | null;
}

§Properties

§
Filter?: [key in ListRecommendationsFilterKey]: string | null | undefined | null
[src]

Filters applied when retrieving recommendations. Can eiter be an individual filter, or combinations of STATUS and IMPACT or STATUS and TYPE

§
NextToken?: string | null
[src]

A token returned from a previous call to ListRecommendations to indicate the position in the list of recommendations.

§
PageSize?: number | null
[src]

The number of results to show in a single call to ListRecommendations. 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.

The value you specify has to be at least 1, and can be no more than 100.