Interface GetTestResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetTestResponse.Builder,GetTestResponse>,DeviceFarmResponse.Builder,SdkBuilder<GetTestResponse.Builder,GetTestResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetTestResponse
public static interface GetTestResponse.Builder extends DeviceFarmResponse.Builder, SdkPojo, CopyableBuilder<GetTestResponse.Builder,GetTestResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetTestResponse.Buildertest(Consumer<Test.Builder> test)A test condition that is evaluated.GetTestResponse.Buildertest(Test test)A test condition that is evaluated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.devicefarm.model.DeviceFarmResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
test
GetTestResponse.Builder test(Test test)
A test condition that is evaluated.
- Parameters:
test- A test condition that is evaluated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
test
default GetTestResponse.Builder test(Consumer<Test.Builder> test)
A test condition that is evaluated.
This is a convenience method that creates an instance of theTest.Builderavoiding the need to create one manually viaTest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totest(Test).- Parameters:
test- a consumer that will call methods onTest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
test(Test)
-
-