ListEmailMessagesForEmailFolderIdInput

public struct ListEmailMessagesForEmailFolderIdInput : Equatable

input object for listing email messages for an email folder using SudoEmailClient

  • The unique identifier of email folder to retrieve messages for.

    Declaration

    Swift

    public let emailFolderId: 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?