Amazon CodePipeline · JSON Structure

Amazon Codepipeline Pipeline Structure

Pipeline schema from Amazon CodePipeline

Type: object Properties: 4
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Pipeline is a JSON Structure definition published by Amazon CodePipeline, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name roleArn stages version

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-pipeline-structure.json",
  "name": "Pipeline",
  "description": "Pipeline schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the pipeline."
    },
    "roleArn": {
      "type": "string",
      "description": "The ARN of the IAM role used by the pipeline."
    },
    "stages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StageDeclaration"
      }
    },
    "version": {
      "type": "int32",
      "description": "The version number of the pipeline."
    }
  }
}