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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codebuild/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)


6221
6222
6223
6224
6225
6226
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6221

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)


6221
6222
6223
6224
6225
6226
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6221

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