Interface ListTestRunsRequest.Builder
-
- All Superinterfaces:
AppTestRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<ListTestRunsRequest.Builder,ListTestRunsRequest>,SdkBuilder<ListTestRunsRequest.Builder,ListTestRunsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListTestRunsRequest
public static interface ListTestRunsRequest.Builder extends AppTestRequest.Builder, SdkPojo, CopyableBuilder<ListTestRunsRequest.Builder,ListTestRunsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTestRunsRequest.BuildermaxResults(Integer maxResults)The maximum number of test runs to return in one page of results.ListTestRunsRequest.BuildernextToken(String nextToken)The token from the previous request to retrieve the next page of test run results.ListTestRunsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListTestRunsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListTestRunsRequest.BuildertestRunIds(String... testRunIds)The test run IDs of the test runs.ListTestRunsRequest.BuildertestRunIds(Collection<String> testRunIds)The test run IDs of the test runs.ListTestRunsRequest.BuildertestSuiteId(String testSuiteId)The test suite ID of the test runs.-
Methods inherited from interface software.amazon.awssdk.services.apptest.model.AppTestRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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 Detail
-
testSuiteId
ListTestRunsRequest.Builder testSuiteId(String testSuiteId)
The test suite ID of the test runs.
- Parameters:
testSuiteId- The test suite ID of the test runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testRunIds
ListTestRunsRequest.Builder testRunIds(Collection<String> testRunIds)
The test run IDs of the test runs.
- Parameters:
testRunIds- The test run IDs of the test runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testRunIds
ListTestRunsRequest.Builder testRunIds(String... testRunIds)
The test run IDs of the test runs.
- Parameters:
testRunIds- The test run IDs of the test runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListTestRunsRequest.Builder nextToken(String nextToken)
The token from the previous request to retrieve the next page of test run results.
- Parameters:
nextToken- The token from the previous request to retrieve the next page of test run results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListTestRunsRequest.Builder maxResults(Integer maxResults)
The maximum number of test runs to return in one page of results.
- Parameters:
maxResults- The maximum number of test runs to return in one page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListTestRunsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListTestRunsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-