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

ListIdentitiesRequest

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

Represents a request to return a list of all identities (email addresses and domains) that you have attempted to verify under your AWS account, regardless of verification status.

interface ListIdentitiesRequest {
IdentityType?: IdentityType | null;
MaxItems?: number | null;
NextToken?: string | null;
}

§Properties

§
IdentityType?: IdentityType | null
[src]

The type of the identities to list. Possible values are "EmailAddress" and "Domain". If this parameter is omitted, then all identities will be listed.

§
MaxItems?: number | null
[src]

The maximum number of identities per page. Possible values are 1-1000 inclusive.

§
NextToken?: string | null
[src]

The token to use for pagination.