Interface SearchProvisionedProductsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchProvisionedProductsResponse.Builder,SearchProvisionedProductsResponse>,SdkBuilder<SearchProvisionedProductsResponse.Builder,SearchProvisionedProductsResponse>,SdkPojo,SdkResponse.Builder,ServiceCatalogResponse.Builder
- Enclosing class:
- SearchProvisionedProductsResponse
public static interface SearchProvisionedProductsResponse.Builder extends ServiceCatalogResponse.Builder, SdkPojo, CopyableBuilder<SearchProvisionedProductsResponse.Builder,SearchProvisionedProductsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchProvisionedProductsResponse.BuildernextPageToken(String nextPageToken)The page token to use to retrieve the next set of results.SearchProvisionedProductsResponse.BuilderprovisionedProducts(Collection<ProvisionedProductAttribute> provisionedProducts)Information about the provisioned products.SearchProvisionedProductsResponse.BuilderprovisionedProducts(Consumer<ProvisionedProductAttribute.Builder>... provisionedProducts)Information about the provisioned products.SearchProvisionedProductsResponse.BuilderprovisionedProducts(ProvisionedProductAttribute... provisionedProducts)Information about the provisioned products.SearchProvisionedProductsResponse.BuildertotalResultsCount(Integer totalResultsCount)The number of provisioned products found.-
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
-
provisionedProducts
SearchProvisionedProductsResponse.Builder provisionedProducts(Collection<ProvisionedProductAttribute> provisionedProducts)
Information about the provisioned products.
- Parameters:
provisionedProducts- Information about the provisioned products.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisionedProducts
SearchProvisionedProductsResponse.Builder provisionedProducts(ProvisionedProductAttribute... provisionedProducts)
Information about the provisioned products.
- Parameters:
provisionedProducts- Information about the provisioned products.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisionedProducts
SearchProvisionedProductsResponse.Builder provisionedProducts(Consumer<ProvisionedProductAttribute.Builder>... provisionedProducts)
Information about the provisioned products.
This is a convenience method that creates an instance of theProvisionedProductAttribute.Builderavoiding the need to create one manually viaProvisionedProductAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#provisionedProducts(List.) - Parameters:
provisionedProducts- a consumer that will call methods onProvisionedProductAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#provisionedProducts(java.util.Collection)
-
totalResultsCount
SearchProvisionedProductsResponse.Builder totalResultsCount(Integer totalResultsCount)
The number of provisioned products found.
- Parameters:
totalResultsCount- The number of provisioned products found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextPageToken
SearchProvisionedProductsResponse.Builder nextPageToken(String nextPageToken)
The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
- Parameters:
nextPageToken- The page token to use to retrieve the next set of results. If there are no additional results, this value is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-