GetScreenDataResult

public struct GetScreenDataResult : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the query has been loaded.

    Declaration

    Swift

    public let nextToken: String?
  • A map of all the rows on the screen keyed by block name.

    Declaration

    Swift

    public let results: [String : ResultSet]
  • Indicates the cursor of the workbook at which the data returned by this workbook is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

    Declaration

    Swift

    public let workbookCursor: Int64
  • Undocumented

    Declaration

    Swift

    public init(nextToken: String? = nil, results: [String : ResultSet], workbookCursor: Int64)