Class: Aws::RoboMaker::Types::ProgressDetail
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RoboMaker::Types::ProgressDetail
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
Information about the progress of a deployment job.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #current_progress  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current progress status. 
- 
  
    
      #estimated_time_remaining_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Estimated amount of time in seconds remaining in the step. 
- 
  
    
      #percent_done  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Precentage of the step that is done. 
- 
  
    
      #target_resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of the deployment job. 
Instance Attribute Details
#current_progress ⇒ String
The current progress status.
Validating
: Validating the deployment.
DownloadingExtracting
: Downloading and extracting the bundle on the robot.
ExecutingPreLaunch
: Executing pre-launch script(s) if provided.
Launching
: Launching the robot application.
ExecutingPostLaunch
: Executing post-launch script(s) if provided.
Finished
: Deployment is complete.
| 4051 4052 4053 4054 4055 4056 4057 4058 | # File 'lib/aws-sdk-robomaker/types.rb', line 4051 class ProgressDetail < Struct.new( :current_progress, :percent_done, :estimated_time_remaining_seconds, :target_resource) SENSITIVE = [] include Aws::Structure end | 
#estimated_time_remaining_seconds ⇒ Integer
Estimated amount of time in seconds remaining in the step. This currently only applies to the ‘Downloading/Extracting` step of the deployment. It is empty for other steps.
| 4051 4052 4053 4054 4055 4056 4057 4058 | # File 'lib/aws-sdk-robomaker/types.rb', line 4051 class ProgressDetail < Struct.new( :current_progress, :percent_done, :estimated_time_remaining_seconds, :target_resource) SENSITIVE = [] include Aws::Structure end | 
#percent_done ⇒ Float
Precentage of the step that is done. This currently only applies to the ‘Downloading/Extracting` step of the deployment. It is empty for other steps.
| 4051 4052 4053 4054 4055 4056 4057 4058 | # File 'lib/aws-sdk-robomaker/types.rb', line 4051 class ProgressDetail < Struct.new( :current_progress, :percent_done, :estimated_time_remaining_seconds, :target_resource) SENSITIVE = [] include Aws::Structure end | 
#target_resource ⇒ String
The Amazon Resource Name (ARN) of the deployment job.
| 4051 4052 4053 4054 4055 4056 4057 4058 | # File 'lib/aws-sdk-robomaker/types.rb', line 4051 class ProgressDetail < Struct.new( :current_progress, :percent_done, :estimated_time_remaining_seconds, :target_resource) SENSITIVE = [] include Aws::Structure end |