ListOutput
public struct ListOutput<T>extension ListOutput: Equatable where T: EquatableGeneric Type to wrap around an Output SudoEmail type from a List result.
This is useful for pagination requests and can use its nextToken to call the next paginated results.
- 
                  
                  Items returned by a List query output. DeclarationSwift public let items: [T]
- 
                  
                  Next token to call next page of paginated results. DeclarationSwift public let nextToken: String?
- 
                  
                  Initialize an instance of ListOutput. DeclarationSwift public init(items: [T], nextToken: String? = nil)
 ListOutput Structure Reference
      ListOutput Structure Reference