Interface ListEmailMessagesForEmailAddressIdInput

Input for SudoEmailClient.listEmailMessagesForEmailAddressId.

ListEmailMessagesForEmailAddressIdInput

interface ListEmailMessagesForEmailAddressIdInput {
    cachePolicy?: CachePolicy;
    dateRange?: EmailMessageDateRange;
    emailAddressId: string;
    includeDeletedMessages?: boolean;
    limit?: number;
    nextToken?: string;
    sortOrder?: SortOrder;
}

Hierarchy

  • Pagination
    • ListEmailMessagesForEmailAddressIdInput

Properties

cachePolicy?: CachePolicy

Determines how the email messages will be fetched. Default usage is remoteOnly.

Email messages matching the specified date range inclusive will be fetched.

emailAddressId: string

The identifier of the email address associated with the email message.

includeDeletedMessages?: boolean

A flag to indicate if deleted messages should be included. Defaults to false.

limit?: number
nextToken?: string
sortOrder?: SortOrder

The direction in which the email messages are sorted. Defaults to descending.