Class: Aws::AppTest::Types::TestCases
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::TestCases
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Note:
TestCases is a union - when making an API calls you must set exactly one of the members.
Note:
TestCases is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TestCases corresponding to the set member.
Specifies test cases.
Direct Known Subclasses
Defined Under Namespace
Classes: Sequential, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sequential ⇒ Array<String>
The sequential of the test case.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#sequential ⇒ Array<String>
The sequential of the test case.
2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 |
# File 'lib/aws-sdk-apptest/types.rb', line 2744 class TestCases < Struct.new( :sequential, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Sequential < TestCases; end class Unknown < TestCases; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2744 2745 2746 |
# File 'lib/aws-sdk-apptest/types.rb', line 2744 def unknown @unknown end |