Interface ListPrivateGraphEndpointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPrivateGraphEndpointsResponse.Builder,ListPrivateGraphEndpointsResponse>,NeptuneGraphResponse.Builder,SdkBuilder<ListPrivateGraphEndpointsResponse.Builder,ListPrivateGraphEndpointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPrivateGraphEndpointsResponse
public static interface ListPrivateGraphEndpointsResponse.Builder extends NeptuneGraphResponse.Builder, SdkPojo, CopyableBuilder<ListPrivateGraphEndpointsResponse.Builder,ListPrivateGraphEndpointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPrivateGraphEndpointsResponse.BuildernextToken(String nextToken)Pagination token used to paginate output.ListPrivateGraphEndpointsResponse.BuilderprivateGraphEndpoints(Collection<PrivateGraphEndpointSummary> privateGraphEndpoints)A list of private endpoints for the specified Neptune Analytics graph.ListPrivateGraphEndpointsResponse.BuilderprivateGraphEndpoints(Consumer<PrivateGraphEndpointSummary.Builder>... privateGraphEndpoints)A list of private endpoints for the specified Neptune Analytics graph.ListPrivateGraphEndpointsResponse.BuilderprivateGraphEndpoints(PrivateGraphEndpointSummary... privateGraphEndpoints)A list of private endpoints for the specified Neptune Analytics graph.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.neptunegraph.model.NeptuneGraphResponse.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
-
privateGraphEndpoints
ListPrivateGraphEndpointsResponse.Builder privateGraphEndpoints(Collection<PrivateGraphEndpointSummary> privateGraphEndpoints)
A list of private endpoints for the specified Neptune Analytics graph.
- Parameters:
privateGraphEndpoints- A list of private endpoints for the specified Neptune Analytics graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
privateGraphEndpoints
ListPrivateGraphEndpointsResponse.Builder privateGraphEndpoints(PrivateGraphEndpointSummary... privateGraphEndpoints)
A list of private endpoints for the specified Neptune Analytics graph.
- Parameters:
privateGraphEndpoints- A list of private endpoints for the specified Neptune Analytics graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
privateGraphEndpoints
ListPrivateGraphEndpointsResponse.Builder privateGraphEndpoints(Consumer<PrivateGraphEndpointSummary.Builder>... privateGraphEndpoints)
A list of private endpoints for the specified Neptune Analytics graph.
This is a convenience method that creates an instance of thePrivateGraphEndpointSummary.Builderavoiding the need to create one manually viaPrivateGraphEndpointSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#privateGraphEndpoints(List.) - Parameters:
privateGraphEndpoints- a consumer that will call methods onPrivateGraphEndpointSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#privateGraphEndpoints(java.util.Collection)
-
nextToken
ListPrivateGraphEndpointsResponse.Builder nextToken(String nextToken)
Pagination token used to paginate output.
When this value is provided as input, the service returns results from where the previous response left off. When this value is present in output, it indicates that there are more results to retrieve.
- Parameters:
nextToken- Pagination token used to paginate output.When this value is provided as input, the service returns results from where the previous response left off. When this value is present in output, it indicates that there are more results to retrieve.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-