Class: Aws::WellArchitected::Types::Progress

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb

Overview

Progress information for a recommendation generation process.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#completion_percentageFloat

The completion percentage of the generation process (0-100).

Returns:

  • (Float)


6581
6582
6583
6584
6585
6586
6587
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 6581

class Progress < Struct.new(
  :steps_completed,
  :total_steps,
  :completion_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#steps_completedInteger

The number of generation steps that have been completed.

Returns:

  • (Integer)


6581
6582
6583
6584
6585
6586
6587
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 6581

class Progress < Struct.new(
  :steps_completed,
  :total_steps,
  :completion_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#total_stepsInteger

The total number of steps in the generation process.

Returns:

  • (Integer)


6581
6582
6583
6584
6585
6586
6587
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 6581

class Progress < Struct.new(
  :steps_completed,
  :total_steps,
  :completion_percentage)
  SENSITIVE = []
  include Aws::Structure
end