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?
-
Determines how the email address will be fetched. Default usage is
remoteOnly
.Declaration
Swift
public let cachePolicy: CachePolicy?
-
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?