Interface SubscribedAssetListing.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SubscribedAssetListing.Builder,SubscribedAssetListing>,SdkBuilder<SubscribedAssetListing.Builder,SubscribedAssetListing>,SdkPojo
- Enclosing class:
- SubscribedAssetListing
public static interface SubscribedAssetListing.Builder extends SdkPojo, CopyableBuilder<SubscribedAssetListing.Builder,SubscribedAssetListing>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SubscribedAssetListing.BuilderassetScope(Consumer<AssetScope.Builder> assetScope)The asset scope of the subscribed asset listing.SubscribedAssetListing.BuilderassetScope(AssetScope assetScope)The asset scope of the subscribed asset listing.SubscribedAssetListing.BuilderentityId(String entityId)The identifier of the published asset for which the subscription grant is created.SubscribedAssetListing.BuilderentityRevision(String entityRevision)The revision of the published asset for which the subscription grant is created.SubscribedAssetListing.BuilderentityType(String entityType)The type of the published asset for which the subscription grant is created.SubscribedAssetListing.Builderforms(String forms)The forms attached to the published asset for which the subscription grant is created.SubscribedAssetListing.BuilderglossaryTerms(Collection<DetailedGlossaryTerm> glossaryTerms)The glossary terms attached to the published asset for which the subscription grant is created.SubscribedAssetListing.BuilderglossaryTerms(Consumer<DetailedGlossaryTerm.Builder>... glossaryTerms)The glossary terms attached to the published asset for which the subscription grant is created.SubscribedAssetListing.BuilderglossaryTerms(DetailedGlossaryTerm... glossaryTerms)The glossary terms attached to the published asset for which the subscription grant is created.-
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
-
assetScope
SubscribedAssetListing.Builder assetScope(AssetScope assetScope)
The asset scope of the subscribed asset listing.
- Parameters:
assetScope- The asset scope of the subscribed asset listing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetScope
default SubscribedAssetListing.Builder assetScope(Consumer<AssetScope.Builder> assetScope)
The asset scope of the subscribed asset listing.
This is a convenience method that creates an instance of theAssetScope.Builderavoiding the need to create one manually viaAssetScope.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toassetScope(AssetScope).- Parameters:
assetScope- a consumer that will call methods onAssetScope.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
assetScope(AssetScope)
-
entityId
SubscribedAssetListing.Builder entityId(String entityId)
The identifier of the published asset for which the subscription grant is created.
- Parameters:
entityId- The identifier of the published asset for which the subscription grant is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityRevision
SubscribedAssetListing.Builder entityRevision(String entityRevision)
The revision of the published asset for which the subscription grant is created.
- Parameters:
entityRevision- The revision of the published asset for which the subscription grant is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityType
SubscribedAssetListing.Builder entityType(String entityType)
The type of the published asset for which the subscription grant is created.
- Parameters:
entityType- The type of the published asset for which the subscription grant is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
forms
SubscribedAssetListing.Builder forms(String forms)
The forms attached to the published asset for which the subscription grant is created.
- Parameters:
forms- The forms attached to the published asset for which the subscription grant is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
SubscribedAssetListing.Builder glossaryTerms(Collection<DetailedGlossaryTerm> glossaryTerms)
The glossary terms attached to the published asset for which the subscription grant is created.
- Parameters:
glossaryTerms- The glossary terms attached to the published asset for which the subscription grant is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
SubscribedAssetListing.Builder glossaryTerms(DetailedGlossaryTerm... glossaryTerms)
The glossary terms attached to the published asset for which the subscription grant is created.
- Parameters:
glossaryTerms- The glossary terms attached to the published asset for which the subscription grant is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glossaryTerms
SubscribedAssetListing.Builder glossaryTerms(Consumer<DetailedGlossaryTerm.Builder>... glossaryTerms)
The glossary terms attached to the published asset for which the subscription grant is created.
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)
-
-