Interface DescribeRecordResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeRecordResponse.Builder,DescribeRecordResponse>,SdkBuilder<DescribeRecordResponse.Builder,DescribeRecordResponse>,SdkPojo,SdkResponse.Builder,ServiceCatalogResponse.Builder
- Enclosing class:
- DescribeRecordResponse
public static interface DescribeRecordResponse.Builder extends ServiceCatalogResponse.Builder, SdkPojo, CopyableBuilder<DescribeRecordResponse.Builder,DescribeRecordResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DescribeRecordResponse.BuildernextPageToken(String nextPageToken)The page token to use to retrieve the next set of results.default DescribeRecordResponse.BuilderrecordDetail(Consumer<RecordDetail.Builder> recordDetail)Information about the product.DescribeRecordResponse.BuilderrecordDetail(RecordDetail recordDetail)Information about the product.DescribeRecordResponse.BuilderrecordOutputs(Collection<RecordOutput> recordOutputs)Information about the product created as the result of a request.DescribeRecordResponse.BuilderrecordOutputs(Consumer<RecordOutput.Builder>... recordOutputs)Information about the product created as the result of a request.DescribeRecordResponse.BuilderrecordOutputs(RecordOutput... recordOutputs)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, 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
-
recordDetail
DescribeRecordResponse.Builder recordDetail(RecordDetail recordDetail)
Information about the product.
- Parameters:
recordDetail- Information about the product.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordDetail
default DescribeRecordResponse.Builder recordDetail(Consumer<RecordDetail.Builder> recordDetail)
Information about the product.
This is a convenience method that creates an instance of theRecordDetail.Builderavoiding the need to create one manually viaRecordDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torecordDetail(RecordDetail).- Parameters:
recordDetail- a consumer that will call methods onRecordDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
recordDetail(RecordDetail)
-
recordOutputs
DescribeRecordResponse.Builder recordOutputs(Collection<RecordOutput> recordOutputs)
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:
recordOutputs- 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.
-
recordOutputs
DescribeRecordResponse.Builder recordOutputs(RecordOutput... recordOutputs)
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:
recordOutputs- 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.
-
recordOutputs
DescribeRecordResponse.Builder recordOutputs(Consumer<RecordOutput.Builder>... recordOutputs)
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#recordOutputs(List.) - Parameters:
recordOutputs- 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:
#recordOutputs(java.util.Collection)
-
nextPageToken
DescribeRecordResponse.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.
-
-