Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Trigger Config Structure

Information about notification triggers for the deployment group.

Type: object Properties: 3
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

TriggerConfig is a JSON Structure definition published by Amazon CodeDeploy, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

triggerName triggerTargetArn triggerEvents

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-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-trigger-config-structure.json",
  "name": "TriggerConfig",
  "description": "Information about notification triggers for the deployment group.",
  "type": "object",
  "properties": {
    "triggerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TriggerName"
        },
        {
          "description": "The name of the notification trigger."
        }
      ]
    },
    "triggerTargetArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TriggerTargetArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent."
        }
      ]
    },
    "triggerEvents": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TriggerEventTypeList"
        },
        {
          "description": "The event type or types for which notifications are triggered."
        }
      ]
    }
  }
}