class Aws::CodePipeline::Types::PutJobSuccessResultInput

Represents the input of a `PutJobSuccessResult` action.

@note When making an API call, you may pass PutJobSuccessResultInput

data as a hash:

    {
      job_id: "JobId", # required
      current_revision: {
        revision: "Revision", # required
        change_identifier: "RevisionChangeIdentifier", # required
        created: Time.now,
        revision_summary: "RevisionSummary",
      },
      continuation_token: "ContinuationToken",
      execution_details: {
        summary: "ExecutionSummary",
        external_execution_id: "ExecutionId",
        percent_complete: 1,
      },
      output_variables: {
        "OutputVariablesKey" => "OutputVariablesValue",
      },
    }

@!attribute [rw] job_id

The unique system-generated ID of the job that succeeded. This is
the same ID returned from `PollForJobs`.
@return [String]

@!attribute [rw] current_revision

The ID of the current revision of the artifact successfully worked
on by the job.
@return [Types::CurrentRevision]

@!attribute [rw] continuation_token

A token generated by a job worker, such as an AWS CodeDeploy
deployment ID, that a successful job provides to identify a custom
action in progress. Future jobs use this token to identify the
running instance of the action. It can be reused to return more
information about the progress of the custom action. When the action
is complete, no continuation token should be supplied.
@return [String]

@!attribute [rw] execution_details

The execution details of the successful job, such as the actions
taken by the job worker.
@return [Types::ExecutionDetails]

@!attribute [rw] output_variables

Key-value pairs produced as output by a job worker that can be made
available to a downstream action configuration. `outputVariables`
can be included only when there is no continuation token on the
request.
@return [Hash<String,String>]

@see docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobSuccessResultInput AWS API Documentation

Constants

SENSITIVE