ChatChannel

The Chatbot chat channel used for collaboration during an incident.

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
chatbotSns object
empty object
View JSON Schema on GitHub

JSON Schema

incident-manager-chat-channel-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-chat-channel-schema.json",
  "title": "ChatChannel",
  "description": "The Chatbot chat channel used for collaboration during an incident.",
  "type": "object",
  "properties": {
    "chatbotSns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChatbotSnsConfigurationSet"
        },
        {
          "description": "The Amazon SNS targets that Chatbot uses to notify the chat channel of updates to an incident. You can also make updates to the incident through the chat channel by using the Amazon SNS topics. "
        }
      ]
    },
    "empty": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmptyChatChannel"
        },
        {
          "description": "Used to remove the chat channel from an incident record or response plan."
        }
      ]
    }
  }
}