ListEmailMessagesForEmailAddressInput
public struct ListEmailMessagesForEmailAddressInput : Equatable
input object for listing email messages for an email address using SudoEmailClient
-
The unique identifier of email address to retrieve messages for.
Declaration
Swift
public let emailAddressId: String -
Email messages matching the specified date range inclusive will be fetched.
Declaration
Swift
public let dateRange: EmailMessageDateRange? -
The direction in which the email messages are sorted. Defaults to descending.
Declaration
Swift
public let sortOrder: SortOrder? -
The number of items to return. If omitted, the default of 10 will be used.
Declaration
Swift
public let limit: Int? -
A pagination token generated by a previous call.
Declaration
Swift
public let nextToken: String? -
Whether to include deleted messages or not. Defaults to false.
Declaration
Swift
public let includeDeletedMessages: Bool? -
Declaration
Swift
public init( emailAddressId: String, dateRange: EmailMessageDateRange? = nil, sortOrder: SortOrder? = nil, limit: Int? = defaultEmailMessageLimit, nextToken: String? = nil, includeDeletedMessages: Bool? = false )
ListEmailMessagesForEmailAddressInput Structure Reference