Class: Aws::AppTest::Types::Input
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::Input
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::InputFile
The file in the input.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file ⇒ Types::InputFile
The file in the input.
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1240 1241 1242 |
# File 'lib/aws-sdk-apptest/types.rb', line 1240 def unknown @unknown end |