Class: Aws::WellArchitected::Types::Milestone
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WellArchitected::Types::Milestone
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-wellarchitected/types.rb
 
Overview
A milestone 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  ⇒ Types::Workload 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A workload return object.
 
Instance Attribute Details
#milestone_name ⇒ String
The name of the milestone in a workload.
Milestone names must be unique within a workload.
      4288 4289 4290 4291 4292 4293 4294 4295  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4288 class Milestone < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload) SENSITIVE = [] include Aws::Structure end  | 
  
#milestone_number ⇒ Integer
The milestone number.
A workload can have a maximum of 100 milestones.
      4288 4289 4290 4291 4292 4293 4294 4295  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4288 class Milestone < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload) SENSITIVE = [] include Aws::Structure end  | 
  
#recorded_at ⇒ Time
The date and time recorded.
      4288 4289 4290 4291 4292 4293 4294 4295  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4288 class Milestone < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload) SENSITIVE = [] include Aws::Structure end  | 
  
#workload ⇒ Types::Workload
A workload return object.
      4288 4289 4290 4291 4292 4293 4294 4295  | 
    
      # File 'lib/aws-sdk-wellarchitected/types.rb', line 4288 class Milestone < Struct.new( :milestone_number, :milestone_name, :recorded_at, :workload) SENSITIVE = [] include Aws::Structure end  |