Class: Aws::AppTest::Types::TestCases

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

Sequential, Unknown

Defined Under Namespace

Classes: Sequential, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sequentialArray<String>

The sequential of the test case.

Returns:

  • (Array<String>)


2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
# File 'gems/aws-sdk-apptest/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2744
2745
2746
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2744

def unknown
  @unknown
end