Class: Aws::DatabaseMigrationService::Types::MetadataModelProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::MetadataModelProperties
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Note:
MetadataModelProperties is a union - when making an API calls you must set exactly one of the members.
The properties of the metadata model.
Defined Under Namespace
Classes: StatementProperties, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#statement_properties ⇒ Types::StatementProperties
The properties of the SQL statement.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#statement_properties ⇒ Types::StatementProperties
The properties of the SQL statement.
7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 7737 class MetadataModelProperties < Struct.new( :statement_properties, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class StatementProperties < MetadataModelProperties; end class Unknown < MetadataModelProperties; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7737 7738 7739 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 7737 def unknown @unknown end |