Amazon CodePipeline · JSON Structure

Amazon Codepipeline Action Type Id Structure

Represents information about an action type.

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

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

Properties

category owner provider 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-action-type-id-structure.json",
  "name": "ActionTypeId",
  "description": "Represents information about an action type.",
  "type": "object",
  "properties": {
    "category": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionCategory"
        },
        {
          "description": "<p>A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values. </p> <ul> <li> <p>Source</p> </li> <li> <p>Build</p> </li> <li> <p>Test</p> </li> <li> <p>Deploy</p> </li> <li> <p>Invoke</p> </li> <li> <p>Approval</p> </li> </ul>"
        }
      ]
    },
    "owner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionOwner"
        },
        {
          "description": "The creator of the action being called. There are three valid values for the <code>Owner</code> field in the action category section within your pipeline structure: <code>AWS</code>, <code>ThirdParty</code>, and <code>Custom</code>. For more information, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers\">Valid Action Types and Providers in CodePipeline</a>."
        }
      ]
    },
    "provider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionProvider"
        },
        {
          "description": "The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of CodeDeploy, which would be specified as <code>CodeDeploy</code>. For more information, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers\">Valid Action Types and Providers in CodePipeline</a>."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "A string that describes the action version."
        }
      ]
    }
  },
  "required": [
    "category",
    "owner",
    "provider",
    "version"
  ]
}