Class: Aws::DatabaseMigrationService::Types::Progress
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::Progress
- Defined in:
- gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb
Overview
Provides information about the progress of the schema conversion operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#processed_object ⇒ Types::ProcessedObject
The name of the database object that the schema conversion operation currently uses.
-
#progress_percent ⇒ Float
The percent complete for the current step of the schema conversion operation.
-
#progress_step ⇒ String
The step of the schema conversion operation.
-
#total_objects ⇒ Integer
The number of objects in this schema conversion operation.
Instance Attribute Details
#processed_object ⇒ Types::ProcessedObject
The name of the database object that the schema conversion operation currently uses.
10669 10670 10671 10672 10673 10674 10675 10676 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10669 class Progress < Struct.new( :progress_percent, :total_objects, :progress_step, :processed_object) SENSITIVE = [] include Aws::Structure end |
#progress_percent ⇒ Float
The percent complete for the current step of the schema conversion operation.
10669 10670 10671 10672 10673 10674 10675 10676 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10669 class Progress < Struct.new( :progress_percent, :total_objects, :progress_step, :processed_object) SENSITIVE = [] include Aws::Structure end |
#progress_step ⇒ String
The step of the schema conversion operation. This parameter can store one of the following values:
IN_PROGRESS– The operation is running.LOADING_METADATA– Loads metadata from the source database.COUNTING_OBJECTS– Determines the number of objects involved in the operation.ANALYZING– Analyzes the source database objects.CONVERTING– Converts the source database objects to a format compatible with the target database.APPLYING– Applies the converted code to the target database.FINISHED– The operation completed successfully.
10669 10670 10671 10672 10673 10674 10675 10676 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10669 class Progress < Struct.new( :progress_percent, :total_objects, :progress_step, :processed_object) SENSITIVE = [] include Aws::Structure end |
#total_objects ⇒ Integer
The number of objects in this schema conversion operation.
10669 10670 10671 10672 10673 10674 10675 10676 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 10669 class Progress < Struct.new( :progress_percent, :total_objects, :progress_step, :processed_object) SENSITIVE = [] include Aws::Structure end |