ListEmailFoldersForEmailAddressIdInput

public struct ListEmailFoldersForEmailAddressIdInput : Equatable

input object for listing email folders for an email address using SudoEmailClient

  • The unique identifier of email address to retrieve folders for.

    Declaration

    Swift

    public let emailAddressId: String
  • Determines how the email folders will be fetched. Default usage is remoteOnly.

    Declaration

    Swift

    public let cachePolicy: CachePolicy?
  • 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?
  • Declaration

    Swift

    public init(
        emailAddressId: String,
        cachePolicy: CachePolicy? = .remoteOnly,
        limit: Int? = defaultEmailMessageLimit,
        nextToken: String? = nil
    )