Amazon CodePipeline · JSON Structure

Amazon Codepipeline Create Custom Action Type Input Structure

Represents the input of a CreateCustomActionType operation.

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

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

Properties

category provider version settings configurationProperties inputArtifactDetails outputArtifactDetails tags

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-create-custom-action-type-input-structure.json",
  "name": "CreateCustomActionTypeInput",
  "description": "Represents the input of a CreateCustomActionType operation.",
  "type": "object",
  "properties": {
    "category": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionCategory"
        },
        {
          "description": "The category of the custom action, such as a build action or a test action."
        }
      ]
    },
    "provider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionProvider"
        },
        {
          "description": "The provider of the service used in the custom action, such as CodeDeploy."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "The version identifier of the custom action."
        }
      ]
    },
    "settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeSettings"
        },
        {
          "description": "URLs that provide users information about this custom action."
        }
      ]
    },
    "configurationProperties": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionConfigurationPropertyList"
        },
        {
          "description": "<p>The configuration properties for the custom action.</p> <note> <p>You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html\">Create a Custom Action for a Pipeline</a>.</p> </note>"
        }
      ]
    },
    "inputArtifactDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArtifactDetails"
        },
        {
          "description": "The details of the input artifact for the action, such as its commit ID."
        }
      ]
    },
    "outputArtifactDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArtifactDetails"
        },
        {
          "description": "The details of the output artifact of the action, such as its commit ID."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "The tags for the custom action."
        }
      ]
    }
  },
  "required": [
    "category",
    "provider",
    "version",
    "inputArtifactDetails",
    "outputArtifactDetails"
  ]
}