Interface UpdateProductResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateProductResponse.Builder,UpdateProductResponse>,SdkBuilder<UpdateProductResponse.Builder,UpdateProductResponse>,SdkPojo,SdkResponse.Builder,ServiceCatalogResponse.Builder
- Enclosing class:
- UpdateProductResponse
public static interface UpdateProductResponse.Builder extends ServiceCatalogResponse.Builder, SdkPojo, CopyableBuilder<UpdateProductResponse.Builder,UpdateProductResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateProductResponse.BuilderproductViewDetail(Consumer<ProductViewDetail.Builder> productViewDetail)Information about the product view.UpdateProductResponse.BuilderproductViewDetail(ProductViewDetail productViewDetail)Information about the product view.UpdateProductResponse.Buildertags(Collection<Tag> tags)Information about the tags associated with the product.UpdateProductResponse.Buildertags(Consumer<Tag.Builder>... tags)Information about the tags associated with the product.UpdateProductResponse.Buildertags(Tag... tags)Information about the tags associated with the product.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.servicecatalog.model.ServiceCatalogResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
productViewDetail
UpdateProductResponse.Builder productViewDetail(ProductViewDetail productViewDetail)
Information about the product view.
- Parameters:
productViewDetail- Information about the product view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productViewDetail
default UpdateProductResponse.Builder productViewDetail(Consumer<ProductViewDetail.Builder> productViewDetail)
Information about the product view.
This is a convenience method that creates an instance of theProductViewDetail.Builderavoiding the need to create one manually viaProductViewDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toproductViewDetail(ProductViewDetail).- Parameters:
productViewDetail- a consumer that will call methods onProductViewDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
productViewDetail(ProductViewDetail)
-
tags
UpdateProductResponse.Builder tags(Collection<Tag> tags)
Information about the tags associated with the product.
- Parameters:
tags- Information about the tags associated with the product.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
UpdateProductResponse.Builder tags(Tag... tags)
Information about the tags associated with the product.
- Parameters:
tags- Information about the tags associated with the product.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
UpdateProductResponse.Builder tags(Consumer<Tag.Builder>... tags)
Information about the tags associated with the product.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-