Interface ListSbomValidationResultsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSbomValidationResultsResponse.Builder,ListSbomValidationResultsResponse>,IotResponse.Builder,SdkBuilder<ListSbomValidationResultsResponse.Builder,ListSbomValidationResultsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListSbomValidationResultsResponse
public static interface ListSbomValidationResultsResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListSbomValidationResultsResponse.Builder,ListSbomValidationResultsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSbomValidationResultsResponse.BuildernextToken(String nextToken)A token that can be used to retrieve the next set of results, or null if there are no additional results.ListSbomValidationResultsResponse.BuildervalidationResultSummaries(Collection<SbomValidationResultSummary> validationResultSummaries)A summary of the validation results for each software bill of materials attached to a software package version.ListSbomValidationResultsResponse.BuildervalidationResultSummaries(Consumer<SbomValidationResultSummary.Builder>... validationResultSummaries)A summary of the validation results for each software bill of materials attached to a software package version.ListSbomValidationResultsResponse.BuildervalidationResultSummaries(SbomValidationResultSummary... validationResultSummaries)A summary of the validation results for each software bill of materials attached to a software package version.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.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
-
validationResultSummaries
ListSbomValidationResultsResponse.Builder validationResultSummaries(Collection<SbomValidationResultSummary> validationResultSummaries)
A summary of the validation results for each software bill of materials attached to a software package version.
- Parameters:
validationResultSummaries- A summary of the validation results for each software bill of materials attached to a software package version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validationResultSummaries
ListSbomValidationResultsResponse.Builder validationResultSummaries(SbomValidationResultSummary... validationResultSummaries)
A summary of the validation results for each software bill of materials attached to a software package version.
- Parameters:
validationResultSummaries- A summary of the validation results for each software bill of materials attached to a software package version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validationResultSummaries
ListSbomValidationResultsResponse.Builder validationResultSummaries(Consumer<SbomValidationResultSummary.Builder>... validationResultSummaries)
A summary of the validation results for each software bill of materials attached to a software package version.
This is a convenience method that creates an instance of theSbomValidationResultSummary.Builderavoiding the need to create one manually viaSbomValidationResultSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#validationResultSummaries(List.) - Parameters:
validationResultSummaries- a consumer that will call methods onSbomValidationResultSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#validationResultSummaries(java.util.Collection)
-
nextToken
ListSbomValidationResultsResponse.Builder nextToken(String nextToken)
A token that can be used to retrieve the next set of results, or null if there are no additional results.
- Parameters:
nextToken- A token that can be used to retrieve the next set of results, or null if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-