Class: Aws::AppTest::Types::File

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apptest/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.

Direct Known Subclasses

FileType, Unknown

Defined Under Namespace

Classes: FileType, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_typeTypes::CompareFileType

The file type of the file.



817
818
819
820
821
822
823
824
825
826
# File 'gems/aws-sdk-apptest/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



817
818
819
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 817

def unknown
  @unknown
end