ListEmailAddressesForSudoIdInput

data class ListEmailAddressesForSudoIdInput(val sudoId: String, val cachePolicy: CachePolicy = CachePolicy.REMOTE_ONLY, val limit: Int? = SudoEmailClient.DEFAULT_EMAIL_ADDRESS_LIMIT, val nextToken: String? = null)

Input object containing a Sudo identifier and other properties used to list email addresses for a Sudo.

Constructors

Link copied to clipboard
constructor(sudoId: String, cachePolicy: CachePolicy = CachePolicy.REMOTE_ONLY, limit: Int? = SudoEmailClient.DEFAULT_EMAIL_ADDRESS_LIMIT, nextToken: String? = null)

Properties

Link copied to clipboard

CachePolicy Determines how the data will be fetched. When using CachePolicy.CACHE_ONLY, be aware that this will only return cached results of identical API calls.

Link copied to clipboard
val limit: Int?

Int Number of email addresses to return. If omitted the limit defaults to 10.

Link copied to clipboard
val nextToken: String? = null

String A token generated from previous calls to SudoEmailClient.listEmailAddressesForSudoId. This is to allow for pagination. This value should be generated from a previous pagination call, otherwise it will throw an exception. The same arguments should be supplied to this method if using a previously generated nextToken.

Link copied to clipboard

String The identifier of the sudo associated with the email addresses.