Interface GetTestCaseExecutionSummaryResponse.Builder
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectResponse.Builder,CopyableBuilder<GetTestCaseExecutionSummaryResponse.Builder,,GetTestCaseExecutionSummaryResponse> SdkBuilder<GetTestCaseExecutionSummaryResponse.Builder,,GetTestCaseExecutionSummaryResponse> SdkPojo,SdkResponse.Builder
- Enclosing class:
GetTestCaseExecutionSummaryResponse
@Mutable
@NotThreadSafe
public static interface GetTestCaseExecutionSummaryResponse.Builder
extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<GetTestCaseExecutionSummaryResponse.Builder,GetTestCaseExecutionSummaryResponse>
-
Method Summary
Modifier and TypeMethodDescriptionThe timestamp when the test case execution ended.observationSummary(Consumer<ObservationSummary.Builder> observationSummary) Summary statistics for the test case execution.observationSummary(ObservationSummary observationSummary) Summary statistics for the test case execution.The timestamp when the test case execution started.The status of the test case execution.status(TestCaseExecutionStatus status) The status of the test case execution.Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectResponse.Builder
build, responseMetadata, responseMetadataMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFieldsMethods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
startTime
The timestamp when the test case execution started.
- Parameters:
startTime- The timestamp when the test case execution started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
The timestamp when the test case execution ended.
- Parameters:
endTime- The timestamp when the test case execution ended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
The status of the test case execution.
- Parameters:
status- The status of the test case execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
status
The status of the test case execution.
- Parameters:
status- The status of the test case execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
observationSummary
GetTestCaseExecutionSummaryResponse.Builder observationSummary(ObservationSummary observationSummary) Summary statistics for the test case execution.
- Parameters:
observationSummary- Summary statistics for the test case execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
observationSummary
default GetTestCaseExecutionSummaryResponse.Builder observationSummary(Consumer<ObservationSummary.Builder> observationSummary) Summary statistics for the test case execution.
This is a convenience method that creates an instance of theObservationSummary.Builderavoiding the need to create one manually viaObservationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toobservationSummary(ObservationSummary).- Parameters:
observationSummary- a consumer that will call methods onObservationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-