Class: Aws::AppTest::Types::File
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::File
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Note:
File is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of File corresponding to the set member.
Defines a file.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_type ⇒ Types::CompareFileType
The file type of the file.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file_type ⇒ Types::CompareFileType
The file type of the file.
817 818 819 820 821 822 823 824 825 826 |
# File 'lib/aws-sdk-apptest/types.rb', line 817 class File < Struct.new( :file_type, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FileType < File; end class Unknown < File; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
817 818 819 |
# File 'lib/aws-sdk-apptest/types.rb', line 817 def unknown @unknown end |