Interface ListTestRunTestCasesResponse.Builder
-
- All Superinterfaces:
AppTestResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListTestRunTestCasesResponse.Builder,ListTestRunTestCasesResponse>,SdkBuilder<ListTestRunTestCasesResponse.Builder,ListTestRunTestCasesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTestRunTestCasesResponse
public static interface ListTestRunTestCasesResponse.Builder extends AppTestResponse.Builder, SdkPojo, CopyableBuilder<ListTestRunTestCasesResponse.Builder,ListTestRunTestCasesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTestRunTestCasesResponse.BuildernextToken(String nextToken)The token from a previous request to retrieve the next page of results.ListTestRunTestCasesResponse.BuildertestRunTestCases(Collection<TestCaseRunSummary> testRunTestCases)The test run of the test cases.ListTestRunTestCasesResponse.BuildertestRunTestCases(Consumer<TestCaseRunSummary.Builder>... testRunTestCases)The test run of the test cases.ListTestRunTestCasesResponse.BuildertestRunTestCases(TestCaseRunSummary... testRunTestCases)The test run of the test cases.-
Methods inherited from interface software.amazon.awssdk.services.apptest.model.AppTestResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
testRunTestCases
ListTestRunTestCasesResponse.Builder testRunTestCases(Collection<TestCaseRunSummary> testRunTestCases)
The test run of the test cases.
- Parameters:
testRunTestCases- The test run of the test cases.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testRunTestCases
ListTestRunTestCasesResponse.Builder testRunTestCases(TestCaseRunSummary... testRunTestCases)
The test run of the test cases.
- Parameters:
testRunTestCases- The test run of the test cases.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testRunTestCases
ListTestRunTestCasesResponse.Builder testRunTestCases(Consumer<TestCaseRunSummary.Builder>... testRunTestCases)
The test run of the test cases.
This is a convenience method that creates an instance of theTestCaseRunSummary.Builderavoiding the need to create one manually viaTestCaseRunSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#testRunTestCases(List.) - Parameters:
testRunTestCases- a consumer that will call methods onTestCaseRunSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#testRunTestCases(java.util.Collection)
-
nextToken
ListTestRunTestCasesResponse.Builder nextToken(String nextToken)
The token from a previous request to retrieve the next page of results.
- Parameters:
nextToken- The token from a previous request to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-