Amazon CodePipeline · JSON Structure

Amazon Codepipeline Action Type Declaration Structure

The parameters for the action type definition that are provided when the action type is created or updated.

Type: object Properties: 8 Required: 4
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

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

Properties

description executor id inputArtifactDetails outputArtifactDetails permissions properties urls

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-action-type-declaration-structure.json",
  "name": "ActionTypeDeclaration",
  "description": "The parameters for the action type definition that are provided when the action type is created or updated.",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeDescription"
        },
        {
          "description": "The description for the action type to be updated."
        }
      ]
    },
    "executor": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeExecutor"
        },
        {
          "description": "Information about the executor for an action type that was created with any supported integration model."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeIdentifier"
        },
        {
          "description": "The action category, owner, provider, and version of the action type to be updated."
        }
      ]
    },
    "inputArtifactDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeArtifactDetails"
        },
        {
          "description": "Details for the artifacts, such as application files, to be worked on by the action. For example, the minimum and maximum number of input artifacts allowed."
        }
      ]
    },
    "outputArtifactDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeArtifactDetails"
        },
        {
          "description": "Details for the output artifacts, such as a built application, that are the result of the action. For example, the minimum and maximum number of output artifacts allowed."
        }
      ]
    },
    "permissions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypePermissions"
        },
        {
          "description": "Details identifying the accounts with permissions to use the action type."
        }
      ]
    },
    "properties": {
      "description": "The properties of the action type to be updated."
    },
    "urls": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeUrls"
        },
        {
          "description": "The links associated with the action type to be updated."
        }
      ]
    }
  },
  "required": [
    "executor",
    "id",
    "inputArtifactDetails",
    "outputArtifactDetails"
  ]
}