TestCaseFilter

public struct TestCaseFilter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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.

    Declaration

    Swift

    public let keyword: String?
  • The status used to filter test cases. A TestCaseFilter can have one status. Valid values are: SUCCEEDED FAILED ERROR SKIPPED UNKNOWN

    Declaration

    Swift

    public let status: String?
  • Undocumented

    Declaration

    Swift

    public init(keyword: String? = nil, status: String? = nil)