Interface DataProductListing.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataProductListing.Builder,DataProductListing>,SdkBuilder<DataProductListing.Builder,DataProductListing>,SdkPojo
- Enclosing class:
- DataProductListing
public static interface DataProductListing.Builder extends SdkPojo, CopyableBuilder<DataProductListing.Builder,DataProductListing>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataProductListing.BuildercreatedAt(Instant createdAt)The timestamp at which the data product listing was created.DataProductListing.BuilderdataProductId(String dataProductId)The ID of the data product listing.DataProductListing.BuilderdataProductRevision(String dataProductRevision)The revision of the data product listing.DataProductListing.Builderforms(String forms)The metadata forms of the data product listing.DataProductListing.BuilderglossaryTerms(Collection<DetailedGlossaryTerm> glossaryTerms)The glossary terms of the data product listing.DataProductListing.BuilderglossaryTerms(Consumer<DetailedGlossaryTerm.Builder>... glossaryTerms)The glossary terms of the data product listing.DataProductListing.BuilderglossaryTerms(DetailedGlossaryTerm... glossaryTerms)The glossary terms of the data product listing.DataProductListing.Builderitems(Collection<ListingSummary> items)The data assets of the data product listing.DataProductListing.Builderitems(Consumer<ListingSummary.Builder>... items)The data assets of the data product listing.DataProductListing.Builderitems(ListingSummary... items)The data assets of the data product listing.DataProductListing.BuilderowningProjectId(String owningProjectId)The ID of the owning project 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
-
createdAt
DataProductListing.Builder createdAt(Instant createdAt)
The timestamp at which the data product listing was created.
- Parameters:
createdAt- The timestamp at which the data product listing was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataProductId
DataProductListing.Builder dataProductId(String dataProductId)
The ID of the data product listing.
- Parameters:
dataProductId- The ID of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataProductRevision
DataProductListing.Builder dataProductRevision(String dataProductRevision)
The revision of the data product listing.
- Parameters:
dataProductRevision- The revision of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
forms
DataProductListing.Builder forms(String forms)
The metadata forms of the data product listing.
- Parameters:
forms- The metadata forms of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
DataProductListing.Builder glossaryTerms(Collection<DetailedGlossaryTerm> glossaryTerms)
The glossary terms of the data product listing.
- Parameters:
glossaryTerms- The glossary terms of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
DataProductListing.Builder glossaryTerms(DetailedGlossaryTerm... glossaryTerms)
The glossary terms of the data product listing.
- Parameters:
glossaryTerms- The glossary terms of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
DataProductListing.Builder glossaryTerms(Consumer<DetailedGlossaryTerm.Builder>... glossaryTerms)
The glossary terms of the data product listing.
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)
-
items
DataProductListing.Builder items(Collection<ListingSummary> items)
The data assets of the data product listing.
- Parameters:
items- The data assets of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
DataProductListing.Builder items(ListingSummary... items)
The data assets of the data product listing.
- Parameters:
items- The data assets of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
DataProductListing.Builder items(Consumer<ListingSummary.Builder>... items)
The data assets of the data product listing.
This is a convenience method that creates an instance of theListingSummary.Builderavoiding the need to create one manually viaListingSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onListingSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
owningProjectId
DataProductListing.Builder owningProjectId(String owningProjectId)
The ID of the owning project of the data product listing.
- Parameters:
owningProjectId- The ID of the owning project of the data product listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-