Class: Aws::AppTest::Types::Output
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::Output
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::OutputFile
The file of the output.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file ⇒ Types::OutputFile
The file of the output.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2059 2060 2061 |
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2059 def unknown @unknown end |