ListPartialResult

data class ListPartialResult<T, P>(val items: List<T>, val failed: List<PartialResult<P>>, val nextToken: String?)

Represents a partial list result.

Constructors

Link copied to clipboard
constructor(items: List<T>, failed: List<PartialResult<P>>, nextToken: String?)

Properties

Link copied to clipboard

List> Items returned from a partial list query output.

Link copied to clipboard
val items: List<T>

List Items returned from a successful list query output.

Link copied to clipboard

String Generated next token to call for the next page of paginated results.