ActionContext

Represents the context of an action in the stage of a pipeline to a job worker.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
name object
actionExecutionId object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-action-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-action-context-schema.json",
  "title": "ActionContext",
  "description": "Represents the context of an action in the stage of a pipeline to a job worker.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionName"
        },
        {
          "description": "The name of the action in the context of a job."
        }
      ]
    },
    "actionExecutionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionExecutionId"
        },
        {
          "description": "The system-generated unique ID that corresponds to an action's execution."
        }
      ]
    }
  }
}