Amazon CodePipeline · JSON Structure

Amazon Codepipeline Output Artifact Structure

Represents information about the output of an action.

Type: object Properties: 1 Required: 1
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

OutputArtifact is a JSON Structure definition published by Amazon CodePipeline, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-output-artifact-structure.json",
  "name": "OutputArtifact",
  "description": "Represents information about the output of an action.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArtifactName"
        },
        {
          "description": "<p>The name of the output of an artifact, such as \"My App\".</p> <p>The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.</p> <p>Output artifact names must be unique within a pipeline.</p>"
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}