Class: Aws::DatabaseMigrationService::Types::ProcessedObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::ProcessedObject
- Defined in:
- gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb
Overview
The database object that the schema conversion operation currently uses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint_type ⇒ String
The type of the data provider.
-
#name ⇒ String
The name of the database object.
-
#type ⇒ String
The type of the database object.
Instance Attribute Details
#endpoint_type ⇒ String
The type of the data provider. This parameter can store one of the
following values: "SOURCE" or "TARGET".
10621 10622 10623 10624 10625 10626 10627 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10621 class ProcessedObject < Struct.new( :name, :type, :endpoint_type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the database object.
10621 10622 10623 10624 10625 10626 10627 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10621 class ProcessedObject < Struct.new( :name, :type, :endpoint_type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the database object. For example, a table, view, procedure, and so on.
10621 10622 10623 10624 10625 10626 10627 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10621 class ProcessedObject < Struct.new( :name, :type, :endpoint_type) SENSITIVE = [] include Aws::Structure end |