You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TestCaseFilter as input to an Aws::Client method, you can use a vanilla Hash:

{
  status: "String",
  keyword: "String",
}

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.

Returned by:

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)

    A keyword that is used to filter on the name or the prefix of the test cases.

#statusString

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

  • SUCCEEDED

  • FAILED

  • ERROR

  • SKIPPED

  • UNKNOWN

Returns:

  • (String)

    The status used to filter test cases.