Class: Aws::WellArchitected::Types::MilestoneSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WellArchitected::Types::MilestoneSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-wellarchitected/types.rb
 
Overview
A milestone summary return object.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #milestone_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the milestone in a workload.
 - 
  
    
      #milestone_number  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The milestone number.
 - 
  
    
      #recorded_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time recorded.
 - 
  
    
      #workload_summary  ⇒ Types::WorkloadSummary 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A workload summary return object.
 
Instance Attribute Details
#milestone_name ⇒ String
The name of the milestone in a workload.
Milestone names must be unique within a workload.
      4321 4322 4323 4324 4325 4326 4327 4328  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4321 class MilestoneSummary < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload_summary) SENSITIVE = [] include Aws::Structure end  | 
  
#milestone_number ⇒ Integer
The milestone number.
A workload can have a maximum of 100 milestones.
      4321 4322 4323 4324 4325 4326 4327 4328  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4321 class MilestoneSummary < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload_summary) SENSITIVE = [] include Aws::Structure end  | 
  
#recorded_at ⇒ Time
The date and time recorded.
      4321 4322 4323 4324 4325 4326 4327 4328  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4321 class MilestoneSummary < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload_summary) SENSITIVE = [] include Aws::Structure end  | 
  
#workload_summary ⇒ Types::WorkloadSummary
A workload summary return object.
      4321 4322 4323 4324 4325 4326 4327 4328  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4321 class MilestoneSummary < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload_summary) SENSITIVE = [] include Aws::Structure end  |