Interface RDFGraphSummaryValueMap.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RDFGraphSummaryValueMap.Builder,RDFGraphSummaryValueMap>,SdkBuilder<RDFGraphSummaryValueMap.Builder,RDFGraphSummaryValueMap>,SdkPojo
- Enclosing class:
- RDFGraphSummaryValueMap
public static interface RDFGraphSummaryValueMap.Builder extends SdkPojo, CopyableBuilder<RDFGraphSummaryValueMap.Builder,RDFGraphSummaryValueMap>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RDFGraphSummaryValueMap.BuildergraphSummary(Consumer<RDFGraphSummary.Builder> graphSummary)The graph summary of an RDF graph.RDFGraphSummaryValueMap.BuildergraphSummary(RDFGraphSummary graphSummary)The graph summary of an RDF graph.RDFGraphSummaryValueMap.BuilderlastStatisticsComputationTime(Instant lastStatisticsComputationTime)The timestamp, in ISO 8601 format, of the time at which Neptune last computed statistics.RDFGraphSummaryValueMap.Builderversion(String version)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 Detail
-
version
RDFGraphSummaryValueMap.Builder version(String 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
RDFGraphSummaryValueMap.Builder graphSummary(RDFGraphSummary 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.Builderavoiding the need to create one manually viaRDFGraphSummary.builder().When the
Consumercompletes,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:
graphSummary(RDFGraphSummary)
-
-