Interface CreateProductResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateProductResponse.Builder,CreateProductResponse>,SdkBuilder<CreateProductResponse.Builder,CreateProductResponse>,SdkPojo,SdkResponse.Builder,ServiceCatalogResponse.Builder
- Enclosing class:
- CreateProductResponse
public static interface CreateProductResponse.Builder extends ServiceCatalogResponse.Builder, SdkPojo, CopyableBuilder<CreateProductResponse.Builder,CreateProductResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateProductResponse.BuilderproductViewDetail(Consumer<ProductViewDetail.Builder> productViewDetail)Information about the product view.CreateProductResponse.BuilderproductViewDetail(ProductViewDetail productViewDetail)Information about the product view.default CreateProductResponse.BuilderprovisioningArtifactDetail(Consumer<ProvisioningArtifactDetail.Builder> provisioningArtifactDetail)Information about the provisioning artifact.CreateProductResponse.BuilderprovisioningArtifactDetail(ProvisioningArtifactDetail provisioningArtifactDetail)Information about the provisioning artifact.CreateProductResponse.Buildertags(Collection<Tag> tags)Information about the tags associated with the product.CreateProductResponse.Buildertags(Consumer<Tag.Builder>... tags)Information about the tags associated with the product.CreateProductResponse.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
CreateProductResponse.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 CreateProductResponse.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)
-
provisioningArtifactDetail
CreateProductResponse.Builder provisioningArtifactDetail(ProvisioningArtifactDetail provisioningArtifactDetail)
Information about the provisioning artifact.
- Parameters:
provisioningArtifactDetail- Information about the provisioning artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisioningArtifactDetail
default CreateProductResponse.Builder provisioningArtifactDetail(Consumer<ProvisioningArtifactDetail.Builder> provisioningArtifactDetail)
Information about the provisioning artifact.
This is a convenience method that creates an instance of theProvisioningArtifactDetail.Builderavoiding the need to create one manually viaProvisioningArtifactDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprovisioningArtifactDetail(ProvisioningArtifactDetail).- Parameters:
provisioningArtifactDetail- a consumer that will call methods onProvisioningArtifactDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
provisioningArtifactDetail(ProvisioningArtifactDetail)
-
tags
CreateProductResponse.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
CreateProductResponse.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
CreateProductResponse.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)
-
-