ResponsePlanSummary

Details of the response plan that are used when creating an incident.

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
arn object
displayName object
name object
View JSON Schema on GitHub

JSON Schema

incident-manager-response-plan-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-schema/incident-manager-response-plan-summary-schema.json",
  "title": "ResponsePlanSummary",
  "description": "Details of the response plan that are used when creating an incident.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the response plan."
        }
      ]
    },
    "displayName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResponsePlanDisplayName"
        },
        {
          "description": "The human readable name of the response plan. This can include spaces."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResponsePlanName"
        },
        {
          "description": "The name of the response plan. This can't include spaces."
        }
      ]
    }
  },
  "required": [
    "arn",
    "name"
  ]
}