Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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: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
$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.
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
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.