Class: Aws::DatabaseMigrationService::Types::MetadataModelProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::MetadataModelProperties
- Defined in:
- gems/aws-sdk-databasemigrationservice/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 metadata model in JSON format. This object is a Union. Only one member of this object can be specified or returned.
Direct Known Subclasses
Defined Under Namespace
Classes: StatementProperties, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#statement_properties ⇒ Types::StatementProperties
The properties of the statement.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#statement_properties ⇒ Types::StatementProperties
The properties of the statement.
7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 7498 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
7498 7499 7500 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 7498 def unknown @unknown end |