Class: Aws::RoboMaker::Types::ProgressDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::ProgressDetail
- Defined in:
- gems/aws-sdk-robomaker/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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 4046 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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 4046 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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 4046 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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 4046 class ProgressDetail < Struct.new( :current_progress, :percent_done, :estimated_time_remaining_seconds, :target_resource) SENSITIVE = [] include Aws::Structure end |