Interface GetProvisionedProductOutputsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetProvisionedProductOutputsResponse.Builder,GetProvisionedProductOutputsResponse>,SdkBuilder<GetProvisionedProductOutputsResponse.Builder,GetProvisionedProductOutputsResponse>,SdkPojo,SdkResponse.Builder,ServiceCatalogResponse.Builder
- Enclosing class:
- GetProvisionedProductOutputsResponse
public static interface GetProvisionedProductOutputsResponse.Builder extends ServiceCatalogResponse.Builder, SdkPojo, CopyableBuilder<GetProvisionedProductOutputsResponse.Builder,GetProvisionedProductOutputsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetProvisionedProductOutputsResponse.BuildernextPageToken(String nextPageToken)The page token to use to retrieve the next set of results.GetProvisionedProductOutputsResponse.Builderoutputs(Collection<RecordOutput> outputs)Information about the product created as the result of a request.GetProvisionedProductOutputsResponse.Builderoutputs(Consumer<RecordOutput.Builder>... outputs)Information about the product created as the result of a request.GetProvisionedProductOutputsResponse.Builderoutputs(RecordOutput... outputs)Information about the product created as the result of a request.-
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
-
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
-
outputs
GetProvisionedProductOutputsResponse.Builder outputs(Collection<RecordOutput> outputs)
Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
- Parameters:
outputs- Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
GetProvisionedProductOutputsResponse.Builder outputs(RecordOutput... outputs)
Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
- Parameters:
outputs- Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
GetProvisionedProductOutputsResponse.Builder outputs(Consumer<RecordOutput.Builder>... outputs)
Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
This is a convenience method that creates an instance of theRecordOutput.Builderavoiding the need to create one manually viaRecordOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#outputs(List.) - Parameters:
outputs- a consumer that will call methods onRecordOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#outputs(java.util.Collection)
-
nextPageToken
GetProvisionedProductOutputsResponse.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.
-
-