Interface ListTableColumnsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTableColumnsResponse.Builder,ListTableColumnsResponse>,HoneycodeResponse.Builder,SdkBuilder<ListTableColumnsResponse.Builder,ListTableColumnsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTableColumnsResponse
public static interface ListTableColumnsResponse.Builder extends HoneycodeResponse.Builder, SdkPojo, CopyableBuilder<ListTableColumnsResponse.Builder,ListTableColumnsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTableColumnsResponse.BuildernextToken(String nextToken)Provides the pagination token to load the next page if there are more results matching the request.ListTableColumnsResponse.BuildertableColumns(Collection<TableColumn> tableColumns)The list of columns in the table.ListTableColumnsResponse.BuildertableColumns(Consumer<TableColumn.Builder>... tableColumns)The list of columns in the table.ListTableColumnsResponse.BuildertableColumns(TableColumn... tableColumns)The list of columns in the table.ListTableColumnsResponse.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
-
tableColumns
ListTableColumnsResponse.Builder tableColumns(Collection<TableColumn> tableColumns)
The list of columns in the table.
- Parameters:
tableColumns- The list of columns in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableColumns
ListTableColumnsResponse.Builder tableColumns(TableColumn... tableColumns)
The list of columns in the table.
- Parameters:
tableColumns- The list of columns in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableColumns
ListTableColumnsResponse.Builder tableColumns(Consumer<TableColumn.Builder>... tableColumns)
The list of columns in the table.
This is a convenience method that creates an instance of theTableColumn.Builderavoiding the need to create one manually viaTableColumn.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tableColumns(List.) - Parameters:
tableColumns- a consumer that will call methods onTableColumn.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tableColumns(java.util.Collection)
-
nextToken
ListTableColumnsResponse.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
ListTableColumnsResponse.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.
-
-