Interface RDFGraphSummaryValueMap.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<RDFGraphSummaryValueMap.Builder,
,RDFGraphSummaryValueMap> SdkBuilder<RDFGraphSummaryValueMap.Builder,
,RDFGraphSummaryValueMap> SdkPojo
- Enclosing class:
RDFGraphSummaryValueMap
@Mutable
@NotThreadSafe
public static interface RDFGraphSummaryValueMap.Builder
extends SdkPojo, CopyableBuilder<RDFGraphSummaryValueMap.Builder,RDFGraphSummaryValueMap>
-
Method Summary
Modifier and TypeMethodDescriptiondefault RDFGraphSummaryValueMap.Builder
graphSummary
(Consumer<RDFGraphSummary.Builder> graphSummary) The graph summary of an RDF graph.graphSummary
(RDFGraphSummary graphSummary) The graph summary of an RDF graph.lastStatisticsComputationTime
(Instant lastStatisticsComputationTime) The timestamp, in ISO 8601 format, of the time at which Neptune last computed statistics.The version of this graph summary response.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
version
The version of this graph summary response.
- Parameters:
version
- The version of this graph summary response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStatisticsComputationTime
RDFGraphSummaryValueMap.Builder lastStatisticsComputationTime(Instant lastStatisticsComputationTime) The timestamp, in ISO 8601 format, of the time at which Neptune last computed statistics.
- Parameters:
lastStatisticsComputationTime
- The timestamp, in ISO 8601 format, of the time at which Neptune last computed statistics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphSummary
The graph summary of an RDF graph. See Graph summary response for an RDF graph.
- Parameters:
graphSummary
- The graph summary of an RDF graph. See Graph summary response for an RDF graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphSummary
default RDFGraphSummaryValueMap.Builder graphSummary(Consumer<RDFGraphSummary.Builder> graphSummary) The graph summary of an RDF graph. See Graph summary response for an RDF graph.
This is a convenience method that creates an instance of theRDFGraphSummary.Builder
avoiding the need to create one manually viaRDFGraphSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tographSummary(RDFGraphSummary)
.- Parameters:
graphSummary
- a consumer that will call methods onRDFGraphSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-