Class: Aws::CodePipeline::Types::ExecutionDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#external_execution_idString

The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.

Returns:

  • (String)


1280
1281
1282
1283
1284
1285
# File 'lib/aws-sdk-codepipeline/types.rb', line 1280

class ExecutionDetails < Struct.new(
  :summary,
  :external_execution_id,
  :percent_complete)
  include Aws::Structure
end

#percent_completeInteger

The percentage of work completed on the action, represented on a scale of zero to one hundred percent.

Returns:

  • (Integer)


1280
1281
1282
1283
1284
1285
# File 'lib/aws-sdk-codepipeline/types.rb', line 1280

class ExecutionDetails < Struct.new(
  :summary,
  :external_execution_id,
  :percent_complete)
  include Aws::Structure
end

#summaryString

The summary of the current status of the actions.

Returns:

  • (String)


1280
1281
1282
1283
1284
1285
# File 'lib/aws-sdk-codepipeline/types.rb', line 1280

class ExecutionDetails < Struct.new(
  :summary,
  :external_execution_id,
  :percent_complete)
  include Aws::Structure
end