Interface TestCaseRunSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestCaseRunSummary.Builder,TestCaseRunSummary>,SdkBuilder<TestCaseRunSummary.Builder,TestCaseRunSummary>,SdkPojo
- Enclosing class:
- TestCaseRunSummary
public static interface TestCaseRunSummary.Builder extends SdkPojo, CopyableBuilder<TestCaseRunSummary.Builder,TestCaseRunSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestCaseRunSummary.BuilderrunEndTime(Instant runEndTime)The run end time of the test case run summary.TestCaseRunSummary.BuilderrunStartTime(Instant runStartTime)The run start time of the test case run summary.TestCaseRunSummary.Builderstatus(String status)The status of the test case run summary.TestCaseRunSummary.Builderstatus(TestCaseRunStatus status)The status of the test case run summary.TestCaseRunSummary.BuilderstatusReason(String statusReason)The status reason of the test case run summary.TestCaseRunSummary.BuildertestCaseId(String testCaseId)The test case id of the test case run summary.TestCaseRunSummary.BuildertestCaseVersion(Integer testCaseVersion)The test case version of the test case run summary.TestCaseRunSummary.BuildertestRunId(String testRunId)The test run id of the test case run summary.-
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
TestCaseRunSummary.Builder testCaseId(String testCaseId)
The test case id of the test case run summary.
- Parameters:
testCaseId- The test case id of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testCaseVersion
TestCaseRunSummary.Builder testCaseVersion(Integer testCaseVersion)
The test case version of the test case run summary.
- Parameters:
testCaseVersion- The test case version of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testRunId
TestCaseRunSummary.Builder testRunId(String testRunId)
The test run id of the test case run summary.
- Parameters:
testRunId- The test run id of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
TestCaseRunSummary.Builder status(String status)
The status of the test case run summary.
- Parameters:
status- The status of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TestCaseRunStatus,TestCaseRunStatus
-
status
TestCaseRunSummary.Builder status(TestCaseRunStatus status)
The status of the test case run summary.
- Parameters:
status- The status of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TestCaseRunStatus,TestCaseRunStatus
-
statusReason
TestCaseRunSummary.Builder statusReason(String statusReason)
The status reason of the test case run summary.
- Parameters:
statusReason- The status reason of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runStartTime
TestCaseRunSummary.Builder runStartTime(Instant runStartTime)
The run start time of the test case run summary.
- Parameters:
runStartTime- The run start time of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runEndTime
TestCaseRunSummary.Builder runEndTime(Instant runEndTime)
The run end time of the test case run summary.
- Parameters:
runEndTime- The run end time of the test case run summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-