StartIncidentOutput

StartIncidentOutput schema

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
incidentRecordArn object
View JSON Schema on GitHub

JSON Schema

incident-manager-start-incident-output-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-start-incident-output-schema.json",
  "title": "StartIncidentOutput",
  "description": "StartIncidentOutput schema",
  "type": "object",
  "properties": {
    "incidentRecordArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The ARN of the newly created incident record."
        }
      ]
    }
  },
  "required": [
    "incidentRecordArn"
  ]
}