Class: Aws::AppTest::Types::CompareFileType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::CompareFileType
- Includes:
- Structure, Structure::Union
- Defined in:
- 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
Defined Under Namespace
Classes: DatabaseCdc, Datasets, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_cdc ⇒ Types::CompareDatabaseCDCSummary
The database CDC of the compare file type.
-
#datasets ⇒ Types::CompareDataSetsSummary
The data sets in the compare file type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#database_cdc ⇒ Types::CompareDatabaseCDCSummary
The database CDC of the compare file type.
381 382 383 384 385 386 387 388 389 390 391 392 |
# File '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 |
#datasets ⇒ Types::CompareDataSetsSummary
The data sets in the compare file type.
381 382 383 384 385 386 387 388 389 390 391 392 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
381 382 383 |
# File 'lib/aws-sdk-apptest/types.rb', line 381 def unknown @unknown end |