Interface Attribution.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Attribution.Builder,Attribution>,SdkBuilder<Attribution.Builder,Attribution>,SdkPojo
- Enclosing class:
- Attribution
@Mutable @NotThreadSafe public static interface Attribution.Builder extends SdkPojo, CopyableBuilder<Attribution.Builder,Attribution>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Attribution.Buildercitations(Collection<Citation> citations)A list of citations and related information for a part of an agent response.Attribution.Buildercitations(Consumer<Citation.Builder>... citations)A list of citations and related information for a part of an agent response.Attribution.Buildercitations(Citation... citations)A list of citations and related information for a part of an agent 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
-
citations
Attribution.Builder citations(Collection<Citation> citations)
A list of citations and related information for a part of an agent response.
- Parameters:
citations- A list of citations and related information for a part of an agent response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
citations
Attribution.Builder citations(Citation... citations)
A list of citations and related information for a part of an agent response.
- Parameters:
citations- A list of citations and related information for a part of an agent response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
citations
Attribution.Builder citations(Consumer<Citation.Builder>... citations)
A list of citations and related information for a part of an agent response.
This is a convenience method that creates an instance of theCitation.Builderavoiding the need to create one manually viaCitation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#citations(List.) - Parameters:
citations- a consumer that will call methods onCitation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#citations(java.util.Collection)
-
-