Class: Aws::AppTest::Types::CompareFileType

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

Overview

Note:

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

Compares the file type.

Direct Known Subclasses

DatabaseCdc, Datasets, Unknown

Defined Under Namespace

Classes: DatabaseCdc, Datasets, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_cdcTypes::CompareDatabaseCDCSummary

The database CDC of the compare file type.



381
382
383
384
385
386
387
388
389
390
391
392
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 381

class CompareFileType < Struct.new(
  :datasets,
  :database_cdc,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Datasets < CompareFileType; end
  class DatabaseCdc < CompareFileType; end
  class Unknown < CompareFileType; end
end

#datasetsTypes::CompareDataSetsSummary

The data sets in the compare file type.



381
382
383
384
385
386
387
388
389
390
391
392
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 381

class CompareFileType < Struct.new(
  :datasets,
  :database_cdc,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Datasets < CompareFileType; end
  class DatabaseCdc < CompareFileType; end
  class Unknown < CompareFileType; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



381
382
383
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 381

def unknown
  @unknown
end