ActionTypeExecutor

The action engine, or executor, for an action type created for a provider, where the action is to be used by customers of the provider. The action engine is associated with the model used to create and update the action, such as the Lambda integration model.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
configuration object
type object
policyStatementsTemplate object
jobTimeout object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-action-type-executor-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-executor-schema.json",
  "title": "ActionTypeExecutor",
  "description": "The action engine, or executor, for an action type created for a provider, where the action is to be used by customers of the provider. The action engine is associated with the model used to create and update the action, such as the Lambda integration model.",
  "type": "object",
  "properties": {
    "configuration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecutorConfiguration"
        },
        {
          "description": "The action configuration properties for the action type. These properties are specified in the action definition when the action type is created."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecutorType"
        },
        {
          "description": "The integration model used to create and update the action type, <code>Lambda</code> or <code>JobWorker</code>. "
        }
      ]
    },
    "policyStatementsTemplate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyStatementsTemplate"
        },
        {
          "description": "<p>The policy statement that specifies the permissions in the CodePipeline customer account that are needed to successfully run an action.</p> <p>To grant permission to another account, specify the account ID as the Principal, a domain-style identifier defined by the service, for example <code>codepipeline.amazonaws.com</code>.</p> <note> <p>The size of the passed JSON policy document cannot exceed 2048 characters.</p> </note>"
        }
      ]
    },
    "jobTimeout": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobTimeout"
        },
        {
          "description": "The timeout in seconds for the job. An action execution can have multiple jobs. This is the timeout for a single job, not the entire action execution."
        }
      ]
    }
  },
  "required": [
    "configuration",
    "type"
  ]
}