Interface QueryLineageResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<QueryLineageResponse.Builder,QueryLineageResponse>
,SageMakerResponse.Builder
,SdkBuilder<QueryLineageResponse.Builder,QueryLineageResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- QueryLineageResponse
public static interface QueryLineageResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<QueryLineageResponse.Builder,QueryLineageResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryLineageResponse.Builder
edges(Collection<Edge> edges)
A list of edges that connect vertices in the response.QueryLineageResponse.Builder
edges(Consumer<Edge.Builder>... edges)
A list of edges that connect vertices in the response.QueryLineageResponse.Builder
edges(Edge... edges)
A list of edges that connect vertices in the response.QueryLineageResponse.Builder
nextToken(String nextToken)
Limits the number of vertices in the response.QueryLineageResponse.Builder
vertices(Collection<Vertex> vertices)
A list of vertices connected to the start entity(ies) in the lineage graph.QueryLineageResponse.Builder
vertices(Consumer<Vertex.Builder>... vertices)
A list of vertices connected to the start entity(ies) in the lineage graph.QueryLineageResponse.Builder
vertices(Vertex... vertices)
A list of vertices connected to the start entity(ies) in the lineage graph.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
vertices
QueryLineageResponse.Builder vertices(Collection<Vertex> vertices)
A list of vertices connected to the start entity(ies) in the lineage graph.
- Parameters:
vertices
- A list of vertices connected to the start entity(ies) in the lineage graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vertices
QueryLineageResponse.Builder vertices(Vertex... vertices)
A list of vertices connected to the start entity(ies) in the lineage graph.
- Parameters:
vertices
- A list of vertices connected to the start entity(ies) in the lineage graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vertices
QueryLineageResponse.Builder vertices(Consumer<Vertex.Builder>... vertices)
A list of vertices connected to the start entity(ies) in the lineage graph.
This is a convenience method that creates an instance of theVertex.Builder
avoiding the need to create one manually viaVertex.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#vertices(List
.) - Parameters:
vertices
- a consumer that will call methods onVertex.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vertices(java.util.Collection
)
-
edges
QueryLineageResponse.Builder edges(Collection<Edge> edges)
A list of edges that connect vertices in the response.
- Parameters:
edges
- A list of edges that connect vertices in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
edges
QueryLineageResponse.Builder edges(Edge... edges)
A list of edges that connect vertices in the response.
- Parameters:
edges
- A list of edges that connect vertices in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
edges
QueryLineageResponse.Builder edges(Consumer<Edge.Builder>... edges)
A list of edges that connect vertices in the response.
This is a convenience method that creates an instance of theEdge.Builder
avoiding the need to create one manually viaEdge.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#edges(List
.) - Parameters:
edges
- a consumer that will call methods onEdge.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#edges(java.util.Collection
)
-
nextToken
QueryLineageResponse.Builder nextToken(String nextToken)
Limits the number of vertices in the response. Use the
NextToken
in a response to to retrieve the next page of results.- Parameters:
nextToken
- Limits the number of vertices in the response. Use theNextToken
in a response to to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-