ActionType

Returns information about the details of an action type.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
id object
settings object
actionConfigurationProperties object
inputArtifactDetails object
outputArtifactDetails object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-action-type-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-type-schema.json",
  "title": "ActionType",
  "description": "Returns information about the details of an action type.",
  "type": "object",
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeId"
        },
        {
          "description": "Represents information about an action type."
        }
      ]
    },
    "settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionTypeSettings"
        },
        {
          "description": "The settings for the action type."
        }
      ]
    },
    "actionConfigurationProperties": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActionConfigurationPropertyList"
        },
        {
          "description": "The configuration properties for the action type."
        }
      ]
    },
    "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."
        }
      ]
    }
  },
  "required": [
    "id",
    "inputArtifactDetails",
    "outputArtifactDetails"
  ]
}