Class: Aws::AppTest::Types::Output

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb

Overview

Note:

Output is a union - when making an API calls you must set exactly one of the members.

Note:

Output is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Output corresponding to the set member.

Specifies an output.

Direct Known Subclasses

File, Unknown

Defined Under Namespace

Classes: File, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fileTypes::OutputFile

The file of the output.

Returns:



2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2059

class Output < Struct.new(
  :file,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class File < Output; end
  class Unknown < Output; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2059
2060
2061
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2059

def unknown
  @unknown
end