Interface TestWindowSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestWindowSummary.Builder,TestWindowSummary>,SdkBuilder<TestWindowSummary.Builder,TestWindowSummary>,SdkPojo
- Enclosing class:
- TestWindowSummary
public static interface TestWindowSummary.Builder extends SdkPojo, CopyableBuilder<TestWindowSummary.Builder,TestWindowSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestWindowSummary.Buildermessage(String message)If the test failed, the reason why it failed.TestWindowSummary.Builderstatus(String status)The status of the test.TestWindowSummary.BuildertestWindowEnd(Instant testWindowEnd)The time at which the test ended.TestWindowSummary.BuildertestWindowStart(Instant testWindowStart)The time at which the test began.-
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, sdkFields
-
-
-
-
Method Detail
-
testWindowStart
TestWindowSummary.Builder testWindowStart(Instant testWindowStart)
The time at which the test began.
- Parameters:
testWindowStart- The time at which the test began.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testWindowEnd
TestWindowSummary.Builder testWindowEnd(Instant testWindowEnd)
The time at which the test ended.
- Parameters:
testWindowEnd- The time at which the test ended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
TestWindowSummary.Builder status(String status)
The status of the test. Possible status values are:
-
ACTIVE -
CREATE_IN_PROGRESS -
CREATE_FAILED
- Parameters:
status- The status of the test. Possible status values are:-
ACTIVE -
CREATE_IN_PROGRESS -
CREATE_FAILED
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
message
TestWindowSummary.Builder message(String message)
If the test failed, the reason why it failed.
- Parameters:
message- If the test failed, the reason why it failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-