Amazon Incident Manager · JSON Structure

Incident Manager Pager Duty Incident Detail Structure

Details about the PagerDuty incident associated with an incident created by an Incident Manager response plan.

Type: object Properties: 3 Required: 1
AutomationDevOpsIncident ManagementOperations

PagerDutyIncidentDetail is a JSON Structure definition published by Amazon Incident Manager, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

autoResolve id secretId

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-incident-manager/refs/heads/main/json-structure/incident-manager-pager-duty-incident-detail-structure.json",
  "name": "PagerDutyIncidentDetail",
  "description": "Details about the PagerDuty incident associated with an incident created by an Incident Manager response plan.",
  "type": "object",
  "properties": {
    "autoResolve": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Indicates whether to resolve the PagerDuty incident when you resolve the associated Incident Manager incident."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PagerDutyIncidentDetailIdString"
        },
        {
          "description": "The ID of the incident associated with the PagerDuty service for the response plan."
        }
      ]
    },
    "secretId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PagerDutyIncidentDetailSecretIdString"
        },
        {
          "description": "The ID of the Amazon Web Services Secrets Manager secret that stores your PagerDuty key, either a General Access REST API Key or User Token REST API Key, and other user credentials."
        }
      ]
    }
  },
  "required": [
    "id"
  ]
}