Class: Aws::WellArchitected::Types::Progress
- Inherits:
-
Struct
- Object
- Struct
- Aws::WellArchitected::Types::Progress
- 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
-
#completion_percentage ⇒ Float
The completion percentage of the generation process (0-100).
-
#steps_completed ⇒ Integer
The number of generation steps that have been completed.
-
#total_steps ⇒ Integer
The total number of steps in the generation process.
Instance Attribute Details
#completion_percentage ⇒ Float
The completion percentage of the generation process (0-100).
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_completed ⇒ Integer
The number of generation steps that have been completed.
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_steps ⇒ Integer
The total number of steps in the generation process.
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 |