Interface GetGraphSummaryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetGraphSummaryResponse.Builder,GetGraphSummaryResponse>,NeptuneGraphResponse.Builder,SdkBuilder<GetGraphSummaryResponse.Builder,GetGraphSummaryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetGraphSummaryResponse
public static interface GetGraphSummaryResponse.Builder extends NeptuneGraphResponse.Builder, SdkPojo, CopyableBuilder<GetGraphSummaryResponse.Builder,GetGraphSummaryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetGraphSummaryResponse.BuildergraphSummary(Consumer<GraphDataSummary.Builder> graphSummary)The graph summary.GetGraphSummaryResponse.BuildergraphSummary(GraphDataSummary graphSummary)The graph summary.GetGraphSummaryResponse.BuilderlastStatisticsComputationTime(Instant lastStatisticsComputationTime)The timestamp, in ISO 8601 format, of the time at which Neptune Analytics last computed statistics.GetGraphSummaryResponse.Builderversion(String version)Display the version of this tool.-
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
-
version
GetGraphSummaryResponse.Builder version(String version)
Display the version of this tool.
- Parameters:
version- Display the version of this tool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStatisticsComputationTime
GetGraphSummaryResponse.Builder lastStatisticsComputationTime(Instant lastStatisticsComputationTime)
The timestamp, in ISO 8601 format, of the time at which Neptune Analytics last computed statistics.
- Parameters:
lastStatisticsComputationTime- The timestamp, in ISO 8601 format, of the time at which Neptune Analytics last computed statistics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphSummary
GetGraphSummaryResponse.Builder graphSummary(GraphDataSummary graphSummary)
The graph summary.
- Parameters:
graphSummary- The graph summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphSummary
default GetGraphSummaryResponse.Builder graphSummary(Consumer<GraphDataSummary.Builder> graphSummary)
The graph summary.
This is a convenience method that creates an instance of theGraphDataSummary.Builderavoiding the need to create one manually viaGraphDataSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tographSummary(GraphDataSummary).- Parameters:
graphSummary- a consumer that will call methods onGraphDataSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
graphSummary(GraphDataSummary)
-
-