ListEmailAddressesForSudoIdInput

public struct ListEmailAddressesForSudoIdInput : Equatable

input object for getting a email addresses associated with a sudo using SudoEmailClient

  • The unique identifier of the sudo associated with the email addresses to be retrieved

    Declaration

    Swift

    public let sudoId: String
  • The number of items to return. Will be defaulted if omitted.

    Declaration

    Swift

    public let limit: Int?
  • A token generated by a previous call.

    Declaration

    Swift

    public let nextToken: String?
  • Declaration

    Swift

    public init(
        sudoId: String,
        limit: Int? = defaultEmailAddressesLimit,
        nextToken: String? = nil
    )