Amazon CodePipeline · JSON Structure

Amazon Codepipeline Action Type Executor Structure

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: 4 Required: 2
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

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

Properties

configuration type policyStatementsTemplate jobTimeout

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-executor-structure.json",
  "name": "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"
  ]
}