Interface ListTableRowsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTableRowsResponse.Builder,ListTableRowsResponse>,HoneycodeResponse.Builder,SdkBuilder<ListTableRowsResponse.Builder,ListTableRowsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTableRowsResponse
public static interface ListTableRowsResponse.Builder extends HoneycodeResponse.Builder, SdkPojo, CopyableBuilder<ListTableRowsResponse.Builder,ListTableRowsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTableRowsResponse.BuildercolumnIds(String... columnIds)The list of columns in the table whose row data is returned in the result.ListTableRowsResponse.BuildercolumnIds(Collection<String> columnIds)The list of columns in the table whose row data is returned in the result.ListTableRowsResponse.BuildernextToken(String nextToken)Provides the pagination token to load the next page if there are more results matching the request.ListTableRowsResponse.BuilderrowIdsNotFound(String... rowIdsNotFound)The list of row ids included in the request that were not found in the table.ListTableRowsResponse.BuilderrowIdsNotFound(Collection<String> rowIdsNotFound)The list of row ids included in the request that were not found in the table.ListTableRowsResponse.Builderrows(Collection<TableRow> rows)The list of rows in the table.ListTableRowsResponse.Builderrows(Consumer<TableRow.Builder>... rows)The list of rows in the table.ListTableRowsResponse.Builderrows(TableRow... rows)The list of rows in the table.ListTableRowsResponse.BuilderworkbookCursor(Long workbookCursor)Indicates the cursor of the workbook at which the data returned by this request 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
-
columnIds
ListTableRowsResponse.Builder columnIds(Collection<String> columnIds)
The list of columns in the table whose row data is returned in the result.
- Parameters:
columnIds- The list of columns in the table whose row data is returned in the result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnIds
ListTableRowsResponse.Builder columnIds(String... columnIds)
The list of columns in the table whose row data is returned in the result.
- Parameters:
columnIds- The list of columns in the table whose row data is returned in the result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
ListTableRowsResponse.Builder rows(Collection<TableRow> rows)
The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.
- Parameters:
rows- The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
ListTableRowsResponse.Builder rows(TableRow... rows)
The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.
- Parameters:
rows- The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
ListTableRowsResponse.Builder rows(Consumer<TableRow.Builder>... rows)
The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.
This is a convenience method that creates an instance of theTableRow.Builderavoiding the need to create one manually viaTableRow.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#rows(List.) - Parameters:
rows- a consumer that will call methods onTableRow.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#rows(java.util.Collection)
-
rowIdsNotFound
ListTableRowsResponse.Builder rowIdsNotFound(Collection<String> rowIdsNotFound)
The list of row ids included in the request that were not found in the table.
- Parameters:
rowIdsNotFound- The list of row ids included in the request that were not found in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowIdsNotFound
ListTableRowsResponse.Builder rowIdsNotFound(String... rowIdsNotFound)
The list of row ids included in the request that were not found in the table.
- Parameters:
rowIdsNotFound- The list of row ids included in the request that were not found in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListTableRowsResponse.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 request 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 request has been loaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workbookCursor
ListTableRowsResponse.Builder workbookCursor(Long workbookCursor)
Indicates the cursor of the workbook at which the data returned by this request 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 request 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.
-
-