Interface ListLineageNodeHistoryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListLineageNodeHistoryResponse.Builder,ListLineageNodeHistoryResponse>,DataZoneResponse.Builder,SdkBuilder<ListLineageNodeHistoryResponse.Builder,ListLineageNodeHistoryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListLineageNodeHistoryResponse
public static interface ListLineageNodeHistoryResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListLineageNodeHistoryResponse.Builder,ListLineageNodeHistoryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListLineageNodeHistoryResponse.BuildernextToken(String nextToken)When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken.ListLineageNodeHistoryResponse.Buildernodes(Collection<LineageNodeSummary> nodes)The nodes returned by the ListLineageNodeHistory action.ListLineageNodeHistoryResponse.Buildernodes(Consumer<LineageNodeSummary.Builder>... nodes)The nodes returned by the ListLineageNodeHistory action.ListLineageNodeHistoryResponse.Buildernodes(LineageNodeSummary... nodes)The nodes returned by the ListLineageNodeHistory action.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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
-
nextToken
ListLineageNodeHistoryResponse.Builder nextToken(String nextToken)
When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.
- Parameters:
nextToken- When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodes
ListLineageNodeHistoryResponse.Builder nodes(Collection<LineageNodeSummary> nodes)
The nodes returned by the ListLineageNodeHistory action.
- Parameters:
nodes- The nodes returned by the ListLineageNodeHistory action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodes
ListLineageNodeHistoryResponse.Builder nodes(LineageNodeSummary... nodes)
The nodes returned by the ListLineageNodeHistory action.
- Parameters:
nodes- The nodes returned by the ListLineageNodeHistory action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodes
ListLineageNodeHistoryResponse.Builder nodes(Consumer<LineageNodeSummary.Builder>... nodes)
The nodes returned by the ListLineageNodeHistory action.
This is a convenience method that creates an instance of theLineageNodeSummary.Builderavoiding the need to create one manually viaLineageNodeSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#nodes(List.) - Parameters:
nodes- a consumer that will call methods onLineageNodeSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#nodes(java.util.Collection)
-
-