| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.CodeBuild.Types.TestCaseFilter
Description
Synopsis
Documentation
data TestCaseFilter Source #
A filter used to return specific types of test cases. In order to pass the filter, the report must meet all of the filter properties.
See: newTestCaseFilter smart constructor.
Constructors
| TestCaseFilter' | |
Fields
| |
Instances
newTestCaseFilter :: TestCaseFilter Source #
Create a value of TestCaseFilter with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:keyword:TestCaseFilter', testCaseFilter_keyword - A keyword that is used to filter on the name or the prefix of the
test cases. Only test cases where the keyword is a substring of the
name or the prefix will be returned.
$sel:status:TestCaseFilter', testCaseFilter_status - The status used to filter test cases. A TestCaseFilter can have one
status. Valid values are:
SUCCEEDED
FAILED
ERROR
SKIPPED
UNKNOWN
testCaseFilter_keyword :: Lens' TestCaseFilter (Maybe Text) Source #
A keyword that is used to filter on the name or the prefix of the
test cases. Only test cases where the keyword is a substring of the
name or the prefix will be returned.
testCaseFilter_status :: Lens' TestCaseFilter (Maybe Text) Source #
The status used to filter test cases. A TestCaseFilter can have one
status. Valid values are:
SUCCEEDED
FAILED
ERROR
SKIPPED
UNKNOWN