Interface RetrievedReference.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RetrievedReference.Builder,RetrievedReference>,SdkBuilder<RetrievedReference.Builder,RetrievedReference>,SdkPojo
- Enclosing class:
- RetrievedReference
public static interface RetrievedReference.Builder extends SdkPojo, CopyableBuilder<RetrievedReference.Builder,RetrievedReference>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RetrievedReference.Buildercontent(Consumer<RetrievalResultContent.Builder> content)Contains the cited text from the data source.RetrievedReference.Buildercontent(RetrievalResultContent content)Contains the cited text from the data source.default RetrievedReference.Builderlocation(Consumer<RetrievalResultLocation.Builder> location)Contains information about the location of the data source.RetrievedReference.Builderlocation(RetrievalResultLocation location)Contains information about the location of the data source.-
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, sdkFields
-
-
-
-
Method Detail
-
content
RetrievedReference.Builder content(RetrievalResultContent content)
Contains the cited text from the data source.
- Parameters:
content- Contains the cited text from the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
default RetrievedReference.Builder content(Consumer<RetrievalResultContent.Builder> content)
Contains the cited text from the data source.
This is a convenience method that creates an instance of theRetrievalResultContent.Builderavoiding the need to create one manually viaRetrievalResultContent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontent(RetrievalResultContent).- Parameters:
content- a consumer that will call methods onRetrievalResultContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
content(RetrievalResultContent)
-
location
RetrievedReference.Builder location(RetrievalResultLocation location)
Contains information about the location of the data source.
- Parameters:
location- Contains information about the location of the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
default RetrievedReference.Builder location(Consumer<RetrievalResultLocation.Builder> location)
Contains information about the location of the data source.
This is a convenience method that creates an instance of theRetrievalResultLocation.Builderavoiding the need to create one manually viaRetrievalResultLocation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolocation(RetrievalResultLocation).- Parameters:
location- a consumer that will call methods onRetrievalResultLocation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
location(RetrievalResultLocation)
-
-