Interface ListTestSuitesResponse.Builder
-
- All Superinterfaces:
AppTestResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListTestSuitesResponse.Builder,ListTestSuitesResponse>,SdkBuilder<ListTestSuitesResponse.Builder,ListTestSuitesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTestSuitesResponse
public static interface ListTestSuitesResponse.Builder extends AppTestResponse.Builder, SdkPojo, CopyableBuilder<ListTestSuitesResponse.Builder,ListTestSuitesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTestSuitesResponse.BuildernextToken(String nextToken)The token from a previous request to retrieve the next page of test suites results.ListTestSuitesResponse.BuildertestSuites(Collection<TestSuiteSummary> testSuites)The test suites returned with the response query.ListTestSuitesResponse.BuildertestSuites(Consumer<TestSuiteSummary.Builder>... testSuites)The test suites returned with the response query.ListTestSuitesResponse.BuildertestSuites(TestSuiteSummary... testSuites)The test suites returned with the response query.-
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
-
testSuites
ListTestSuitesResponse.Builder testSuites(Collection<TestSuiteSummary> testSuites)
The test suites returned with the response query.
- Parameters:
testSuites- The test suites returned with the response query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testSuites
ListTestSuitesResponse.Builder testSuites(TestSuiteSummary... testSuites)
The test suites returned with the response query.
- Parameters:
testSuites- The test suites returned with the response query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testSuites
ListTestSuitesResponse.Builder testSuites(Consumer<TestSuiteSummary.Builder>... testSuites)
The test suites returned with the response query.
This is a convenience method that creates an instance of theTestSuiteSummary.Builderavoiding the need to create one manually viaTestSuiteSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#testSuites(List.) - Parameters:
testSuites- a consumer that will call methods onTestSuiteSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#testSuites(java.util.Collection)
-
nextToken
ListTestSuitesResponse.Builder nextToken(String nextToken)
The token from a previous request to retrieve the next page of test suites results.
- Parameters:
nextToken- The token from a previous request to retrieve the next page of test suites results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-