Class: Aws::DatabaseMigrationService::Types::Progress

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#processed_objectTypes::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_percentFloat

The percent complete for the current step of the schema conversion operation.

Returns:

  • (Float)


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_stepString

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.

Returns:

  • (String)


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_objectsInteger

The number of objects in this schema conversion operation.

Returns:

  • (Integer)


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