Class: Aws::CodeBuild::Types::TestCaseFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#keywordString

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.

Returns:

  • (String)


5605
5606
5607
5608
5609
5610
# File 'lib/aws-sdk-codebuild/types.rb', line 5605

class TestCaseFilter < Struct.new(
  :status,
  :keyword)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status used to filter test cases. A ‘TestCaseFilter` can have one status. Valid values are:

  • ‘SUCCEEDED`

  • ‘FAILED`

  • ‘ERROR`

  • ‘SKIPPED`

  • ‘UNKNOWN`

Returns:

  • (String)


5605
5606
5607
5608
5609
5610
# File 'lib/aws-sdk-codebuild/types.rb', line 5605

class TestCaseFilter < Struct.new(
  :status,
  :keyword)
  SENSITIVE = []
  include Aws::Structure
end