Interface ListingSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ListingSummary.Builder,ListingSummary>,SdkBuilder<ListingSummary.Builder,ListingSummary>,SdkPojo
- Enclosing class:
- ListingSummary
public static interface ListingSummary.Builder extends SdkPojo, CopyableBuilder<ListingSummary.Builder,ListingSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListingSummary.BuilderglossaryTerms(Collection<DetailedGlossaryTerm> glossaryTerms)The glossary terms of the data product.ListingSummary.BuilderglossaryTerms(Consumer<DetailedGlossaryTerm.Builder>... glossaryTerms)The glossary terms of the data product.ListingSummary.BuilderglossaryTerms(DetailedGlossaryTerm... glossaryTerms)The glossary terms of the data product.ListingSummary.BuilderlistingId(String listingId)The ID of the data product listing.ListingSummary.BuilderlistingRevision(String listingRevision)The revision of the data product listing.-
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
-
glossaryTerms
ListingSummary.Builder glossaryTerms(Collection<DetailedGlossaryTerm> glossaryTerms)
The glossary terms of the data product.
- Parameters:
glossaryTerms- The glossary terms of the data product.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
ListingSummary.Builder glossaryTerms(DetailedGlossaryTerm... glossaryTerms)
The glossary terms of the data product.
- Parameters:
glossaryTerms- The glossary terms of the data product.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
ListingSummary.Builder glossaryTerms(Consumer<DetailedGlossaryTerm.Builder>... glossaryTerms)
The glossary terms of the data product.
This is a convenience method that creates an instance of theDetailedGlossaryTerm.Builderavoiding the need to create one manually viaDetailedGlossaryTerm.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#glossaryTerms(List.) - Parameters:
glossaryTerms- a consumer that will call methods onDetailedGlossaryTerm.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#glossaryTerms(java.util.Collection)
-
listingId
ListingSummary.Builder listingId(String listingId)
The ID of the data product listing.
- Parameters:
listingId- The ID of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
listingRevision
ListingSummary.Builder listingRevision(String listingRevision)
The revision of the data product listing.
- Parameters:
listingRevision- The revision of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-