Class: Aws::CodePipeline::Types::ExecutionDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ExecutionDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#external_execution_id ⇒ String
The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy.
-
#percent_complete ⇒ Integer
The percentage of work completed on the action, represented on a scale of 0 to 100 percent.
-
#summary ⇒ String
The summary of the current status of the actions.
Instance Attribute Details
#external_execution_id ⇒ String
The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy.
1815 1816 1817 1818 1819 1820 1821 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1815 class ExecutionDetails < Struct.new( :summary, :external_execution_id, :percent_complete) SENSITIVE = [] include Aws::Structure end |
#percent_complete ⇒ Integer
The percentage of work completed on the action, represented on a scale of 0 to 100 percent.
1815 1816 1817 1818 1819 1820 1821 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1815 class ExecutionDetails < Struct.new( :summary, :external_execution_id, :percent_complete) SENSITIVE = [] include Aws::Structure end |
#summary ⇒ String
The summary of the current status of the actions.
1815 1816 1817 1818 1819 1820 1821 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1815 class ExecutionDetails < Struct.new( :summary, :external_execution_id, :percent_complete) SENSITIVE = [] include Aws::Structure end |