Class: Aws::CodeBuild::Types::TestCaseFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::TestCaseFilter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyword ⇒ String
A keyword that is used to filter on the ‘name` or the `prefix` of the test cases.
-
#status ⇒ String
The status used to filter test cases.
Instance Attribute Details
#keyword ⇒ String
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.
7307 7308 7309 7310 7311 7312 |
# File 'lib/aws-sdk-codebuild/types.rb', line 7307 class TestCaseFilter < Struct.new( :status, :keyword) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status used to filter test cases. A ‘TestCaseFilter` can have one status. Valid values are:
-
‘SUCCEEDED`
-
‘FAILED`
-
‘ERROR`
-
‘SKIPPED`
-
‘UNKNOWN`
7307 7308 7309 7310 7311 7312 |
# File 'lib/aws-sdk-codebuild/types.rb', line 7307 class TestCaseFilter < Struct.new( :status, :keyword) SENSITIVE = [] include Aws::Structure end |