Class: Aws::CodePipeline::Types::ExecutionDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ExecutionDetails
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Note:
When making an API call, you may pass ExecutionDetails data as a hash:
{
summary: "ExecutionSummary",
external_execution_id: "ExecutionId",
percent_complete: 1,
}
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 AWS 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 AWS CodeDeploy.
2090 2091 2092 2093 2094 2095 2096 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2090 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.
2090 2091 2092 2093 2094 2095 2096 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2090 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.
2090 2091 2092 2093 2094 2095 2096 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2090 class ExecutionDetails < Struct.new( :summary, :external_execution_id, :percent_complete) SENSITIVE = [] include Aws::Structure end |