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.
7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 7560 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
7560 7561 7562 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 7560 def unknown @unknown end |