PutActionRevisionOutput

Represents the output of a PutActionRevision action.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
newRevision object
pipelineExecutionId object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-put-action-revision-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-put-action-revision-output-schema.json",
  "title": "PutActionRevisionOutput",
  "description": "Represents the output of a <code>PutActionRevision</code> action.",
  "type": "object",
  "properties": {
    "newRevision": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Indicates whether the artifact revision was previously used in an execution of the specified pipeline."
        }
      ]
    },
    "pipelineExecutionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineExecutionId"
        },
        {
          "description": "The ID of the current workflow state of the pipeline."
        }
      ]
    }
  }
}