You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodePipeline::Types::PutJobSuccessResultInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutJobSuccessResultInput as input to an Aws::Client method, you can use a vanilla 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",
  },
}

Represents the input of a PutJobSuccessResult action.

Instance Attribute Summary collapse

Instance Attribute Details

#continuation_tokenString

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.

Returns:

  • (String)

    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.

#current_revisionTypes::CurrentRevision

The ID of the current revision of the artifact successfully worked on by the job.

Returns:

  • (Types::CurrentRevision)

    The ID of the current revision of the artifact successfully worked on by the job.

#execution_detailsTypes::ExecutionDetails

The execution details of the successful job, such as the actions taken by the job worker.

Returns:

  • (Types::ExecutionDetails)

    The execution details of the successful job, such as the actions taken by the job worker.

#job_idString

The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.

Returns:

  • (String)

    The unique system-generated ID of the job that succeeded.

#output_variablesHash<String,String>

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.

Returns:

  • (Hash<String,String>)

    Key-value pairs produced as output by a job worker that can be made available to a downstream action configuration.