Interface UpdateTestCaseRequest.Builder
-
- All Superinterfaces:
AppTestRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateTestCaseRequest.Builder,UpdateTestCaseRequest>,SdkBuilder<UpdateTestCaseRequest.Builder,UpdateTestCaseRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateTestCaseRequest
public static interface UpdateTestCaseRequest.Builder extends AppTestRequest.Builder, SdkPojo, CopyableBuilder<UpdateTestCaseRequest.Builder,UpdateTestCaseRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateTestCaseRequest.Builderdescription(String description)The description of the test case.UpdateTestCaseRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateTestCaseRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateTestCaseRequest.Buildersteps(Collection<Step> steps)The steps of the test case.UpdateTestCaseRequest.Buildersteps(Consumer<Step.Builder>... steps)The steps of the test case.UpdateTestCaseRequest.Buildersteps(Step... steps)The steps of the test case.UpdateTestCaseRequest.BuildertestCaseId(String testCaseId)The test case ID of the test case.-
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
-
testCaseId
UpdateTestCaseRequest.Builder testCaseId(String testCaseId)
The test case ID of the test case.
- Parameters:
testCaseId- The test case ID of the test case.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateTestCaseRequest.Builder description(String description)
The description of the test case.
- Parameters:
description- The description of the test case.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
UpdateTestCaseRequest.Builder steps(Collection<Step> steps)
The steps of the test case.
- Parameters:
steps- The steps of the test case.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
UpdateTestCaseRequest.Builder steps(Step... steps)
The steps of the test case.
- Parameters:
steps- The steps of the test case.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
UpdateTestCaseRequest.Builder steps(Consumer<Step.Builder>... steps)
The steps of the test case.
This is a convenience method that creates an instance of theStep.Builderavoiding the need to create one manually viaStep.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#steps(List.) - Parameters:
steps- a consumer that will call methods onStep.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#steps(java.util.Collection)
-
overrideConfiguration
UpdateTestCaseRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateTestCaseRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-