Interface GetScreenDataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetScreenDataResponse.Builder,GetScreenDataResponse>,HoneycodeResponse.Builder,SdkBuilder<GetScreenDataResponse.Builder,GetScreenDataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetScreenDataResponse
public static interface GetScreenDataResponse.Builder extends HoneycodeResponse.Builder, SdkPojo, CopyableBuilder<GetScreenDataResponse.Builder,GetScreenDataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetScreenDataResponse.BuildernextToken(String nextToken)Provides the pagination token to load the next page if there are more results matching the request.GetScreenDataResponse.Builderresults(Map<String,ResultSet> results)A map of all the rows on the screen keyed by block name.GetScreenDataResponse.BuilderworkbookCursor(Long workbookCursor)Indicates the cursor of the workbook at which the data returned by this workbook is read.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.honeycode.model.HoneycodeResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
results
GetScreenDataResponse.Builder results(Map<String,ResultSet> results)
A map of all the rows on the screen keyed by block name.
- Parameters:
results- A map of all the rows on the screen keyed by block name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workbookCursor
GetScreenDataResponse.Builder workbookCursor(Long workbookCursor)
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.
- Parameters:
workbookCursor- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
GetScreenDataResponse.Builder nextToken(String nextToken)
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.
- Parameters:
nextToken- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-