Interface OverallTestResults.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<OverallTestResults.Builder,
,OverallTestResults> SdkBuilder<OverallTestResults.Builder,
,OverallTestResults> SdkPojo
- Enclosing class:
OverallTestResults
@Mutable
@NotThreadSafe
public static interface OverallTestResults.Builder
extends SdkPojo, CopyableBuilder<OverallTestResults.Builder,OverallTestResults>
-
Method Summary
Modifier and TypeMethodDescriptionitems
(Collection<OverallTestResultItem> items) A list of the overall test results.items
(Consumer<OverallTestResultItem.Builder>... items) A list of the overall test results.items
(OverallTestResultItem... items) A list of the overall test results.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
-
Method Details
-
items
A list of the overall test results.
- Parameters:
items
- A list of the overall test results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
A list of the overall test results.
- Parameters:
items
- A list of the overall test results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
A list of the overall test results.
This is a convenience method that creates an instance of theOverallTestResultItem.Builder
avoiding the need to create one manually viaOverallTestResultItem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toitems(List<OverallTestResultItem>)
.- Parameters:
items
- a consumer that will call methods onOverallTestResultItem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-