Interface BatchGetDataQualityResultResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetDataQualityResultResponse.Builder,BatchGetDataQualityResultResponse>,GlueResponse.Builder,SdkBuilder<BatchGetDataQualityResultResponse.Builder,BatchGetDataQualityResultResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetDataQualityResultResponse
public static interface BatchGetDataQualityResultResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<BatchGetDataQualityResultResponse.Builder,BatchGetDataQualityResultResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetDataQualityResultResponse.Builderresults(Collection<DataQualityResult> results)A list ofDataQualityResultobjects representing the data quality results.BatchGetDataQualityResultResponse.Builderresults(Consumer<DataQualityResult.Builder>... results)A list ofDataQualityResultobjects representing the data quality results.BatchGetDataQualityResultResponse.Builderresults(DataQualityResult... results)A list ofDataQualityResultobjects representing the data quality results.BatchGetDataQualityResultResponse.BuilderresultsNotFound(String... resultsNotFound)A list of result IDs for which results were not found.BatchGetDataQualityResultResponse.BuilderresultsNotFound(Collection<String> resultsNotFound)A list of result IDs for which results were not found.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
results
BatchGetDataQualityResultResponse.Builder results(Collection<DataQualityResult> results)
A list of
DataQualityResultobjects representing the data quality results.- Parameters:
results- A list ofDataQualityResultobjects representing the data quality results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
results
BatchGetDataQualityResultResponse.Builder results(DataQualityResult... results)
A list of
DataQualityResultobjects representing the data quality results.- Parameters:
results- A list ofDataQualityResultobjects representing the data quality results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
results
BatchGetDataQualityResultResponse.Builder results(Consumer<DataQualityResult.Builder>... results)
A list of
This is a convenience method that creates an instance of theDataQualityResultobjects representing the data quality results.DataQualityResult.Builderavoiding the need to create one manually viaDataQualityResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#results(List.) - Parameters:
results- a consumer that will call methods onDataQualityResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#results(java.util.Collection)
-
resultsNotFound
BatchGetDataQualityResultResponse.Builder resultsNotFound(Collection<String> resultsNotFound)
A list of result IDs for which results were not found.
- Parameters:
resultsNotFound- A list of result IDs for which results were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resultsNotFound
BatchGetDataQualityResultResponse.Builder resultsNotFound(String... resultsNotFound)
A list of result IDs for which results were not found.
- Parameters:
resultsNotFound- A list of result IDs for which results were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-