Interface UpdateTestSuiteRequest.Builder
-
- All Superinterfaces:
AppTestRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateTestSuiteRequest.Builder,UpdateTestSuiteRequest>,SdkBuilder<UpdateTestSuiteRequest.Builder,UpdateTestSuiteRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateTestSuiteRequest
public static interface UpdateTestSuiteRequest.Builder extends AppTestRequest.Builder, SdkPojo, CopyableBuilder<UpdateTestSuiteRequest.Builder,UpdateTestSuiteRequest>
-
-
Method Summary
-
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
UpdateTestSuiteRequest.Builder testSuiteId(String testSuiteId)
The test suite ID of the test suite.
- Parameters:
testSuiteId- The test suite ID of the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateTestSuiteRequest.Builder description(String description)
The description of the test suite.
- Parameters:
description- The description of the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforeSteps
UpdateTestSuiteRequest.Builder beforeSteps(Collection<Step> beforeSteps)
The before steps for the test suite.
- Parameters:
beforeSteps- The before steps for the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforeSteps
UpdateTestSuiteRequest.Builder beforeSteps(Step... beforeSteps)
The before steps for the test suite.
- Parameters:
beforeSteps- The before steps for the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforeSteps
UpdateTestSuiteRequest.Builder beforeSteps(Consumer<Step.Builder>... beforeSteps)
The before steps for the test suite.
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#beforeSteps(List.) - Parameters:
beforeSteps- 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:
#beforeSteps(java.util.Collection)
-
afterSteps
UpdateTestSuiteRequest.Builder afterSteps(Collection<Step> afterSteps)
The after steps of the test suite.
- Parameters:
afterSteps- The after steps of the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterSteps
UpdateTestSuiteRequest.Builder afterSteps(Step... afterSteps)
The after steps of the test suite.
- Parameters:
afterSteps- The after steps of the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterSteps
UpdateTestSuiteRequest.Builder afterSteps(Consumer<Step.Builder>... afterSteps)
The after steps of the test suite.
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#afterSteps(List.) - Parameters:
afterSteps- 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:
#afterSteps(java.util.Collection)
-
testCases
UpdateTestSuiteRequest.Builder testCases(TestCases testCases)
The test cases in the test suite.
- Parameters:
testCases- The test cases in the test suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testCases
default UpdateTestSuiteRequest.Builder testCases(Consumer<TestCases.Builder> testCases)
The test cases in the test suite.
This is a convenience method that creates an instance of theTestCases.Builderavoiding the need to create one manually viaTestCases.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totestCases(TestCases).- Parameters:
testCases- a consumer that will call methods onTestCases.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
testCases(TestCases)
-
overrideConfiguration
UpdateTestSuiteRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateTestSuiteRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-