Interface TestCaseFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestCaseFilter.Builder,TestCaseFilter>,SdkBuilder<TestCaseFilter.Builder,TestCaseFilter>,SdkPojo
- Enclosing class:
- TestCaseFilter
public static interface TestCaseFilter.Builder extends SdkPojo, CopyableBuilder<TestCaseFilter.Builder,TestCaseFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestCaseFilter.Builderkeyword(String keyword)A keyword that is used to filter on thenameor theprefixof the test cases.TestCaseFilter.Builderstatus(String status)The status used to filter test cases.-
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
-
status
TestCaseFilter.Builder status(String status)
The status used to filter test cases. A
TestCaseFiltercan have one status. Valid values are:-
SUCCEEDED -
FAILED -
ERROR -
SKIPPED -
UNKNOWN
- Parameters:
status- The status used to filter test cases. ATestCaseFiltercan have one status. Valid values are:-
SUCCEEDED -
FAILED -
ERROR -
SKIPPED -
UNKNOWN
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
keyword
TestCaseFilter.Builder keyword(String keyword)
A keyword that is used to filter on the
nameor theprefixof the test cases. Only test cases where the keyword is a substring of thenameor theprefixwill be returned.- Parameters:
keyword- A keyword that is used to filter on thenameor theprefixof the test cases. Only test cases where the keyword is a substring of thenameor theprefixwill be returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-