StageContext

Represents information about a stage to a job worker.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
name object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-stage-context-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-stage-context-schema.json",
  "title": "StageContext",
  "description": "Represents information about a stage to a job worker.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StageName"
        },
        {
          "description": "The name of the stage."
        }
      ]
    }
  }
}