Interface ListTestCasesResponse.Builder
-
- All Superinterfaces:
AppTestResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListTestCasesResponse.Builder,ListTestCasesResponse>,SdkBuilder<ListTestCasesResponse.Builder,ListTestCasesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTestCasesResponse
public static interface ListTestCasesResponse.Builder extends AppTestResponse.Builder, SdkPojo, CopyableBuilder<ListTestCasesResponse.Builder,ListTestCasesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTestCasesResponse.BuildernextToken(String nextToken)The next token in test cases.ListTestCasesResponse.BuildertestCases(Collection<TestCaseSummary> testCases)The test cases in an application.ListTestCasesResponse.BuildertestCases(Consumer<TestCaseSummary.Builder>... testCases)The test cases in an application.ListTestCasesResponse.BuildertestCases(TestCaseSummary... testCases)The test cases in an application.-
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
-
testCases
ListTestCasesResponse.Builder testCases(Collection<TestCaseSummary> testCases)
The test cases in an application.
- Parameters:
testCases- The test cases in an application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testCases
ListTestCasesResponse.Builder testCases(TestCaseSummary... testCases)
The test cases in an application.
- Parameters:
testCases- The test cases in an application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testCases
ListTestCasesResponse.Builder testCases(Consumer<TestCaseSummary.Builder>... testCases)
The test cases in an application.
This is a convenience method that creates an instance of theTestCaseSummary.Builderavoiding the need to create one manually viaTestCaseSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#testCases(List.) - Parameters:
testCases- a consumer that will call methods onTestCaseSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#testCases(java.util.Collection)
-
nextToken
ListTestCasesResponse.Builder nextToken(String nextToken)
The next token in test cases.
- Parameters:
nextToken- The next token in test cases.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-