Class: Aws::AppTest::Types::Input

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

Overview

Note:

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

Note:

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

Specifies the input.

Direct Known Subclasses

File, Unknown

Defined Under Namespace

Classes: File, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fileTypes::InputFile

The file in the input.

Returns:



1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 1240

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

  class File < Input; end
  class Unknown < Input; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1240
1241
1242
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 1240

def unknown
  @unknown
end