Class: Aws::Honeycode::Types::GetScreenDataResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::GetScreenDataResult
- Defined in:
- gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Provides the pagination token to load the next page if there are more results matching the request.
-
#results ⇒ Hash<String,Types::ResultSet>
A map of all the rows on the screen keyed by block name.
-
#workbook_cursor ⇒ Integer
Indicates the cursor of the workbook at which the data returned by this workbook is read.
Instance Attribute Details
#next_token ⇒ String
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.
887 888 889 890 891 892 893 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 887 class GetScreenDataResult < Struct.new( :results, :workbook_cursor, :next_token) SENSITIVE = [] include Aws::Structure end |
#results ⇒ Hash<String,Types::ResultSet>
A map of all the rows on the screen keyed by block name.
887 888 889 890 891 892 893 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 887 class GetScreenDataResult < Struct.new( :results, :workbook_cursor, :next_token) SENSITIVE = [] include Aws::Structure end |
#workbook_cursor ⇒ Integer
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.
887 888 889 890 891 892 893 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 887 class GetScreenDataResult < Struct.new( :results, :workbook_cursor, :next_token) SENSITIVE = [] include Aws::Structure end |