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.Builderedges(Collection<Edge> edges)A list of edges that connect vertices in the response.QueryLineageResponse.Builderedges(Consumer<Edge.Builder>... edges)A list of edges that connect vertices in the response.QueryLineageResponse.Builderedges(Edge... edges)A list of edges that connect vertices in the response.QueryLineageResponse.BuildernextToken(String nextToken)Limits the number of vertices in the response.QueryLineageResponse.Buildervertices(Collection<Vertex> vertices)A list of vertices connected to the start entity(ies) in the lineage graph.QueryLineageResponse.Buildervertices(Consumer<Vertex.Builder>... vertices)A list of vertices connected to the start entity(ies) in the lineage graph.QueryLineageResponse.Buildervertices(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, 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.Builderavoiding the need to create one manually viaVertex.builder().When the
Consumercompletes,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.Builderavoiding the need to create one manually viaEdge.builder().When the
Consumercompletes,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
NextTokenin a response to to retrieve the next page of results.- Parameters:
nextToken- Limits the number of vertices in the response. Use theNextTokenin 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.
-
-