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