ChatChannel

sealed class ChatChannel

The Chatbot chat channel used for collaboration during an incident.

Inheritors

Types

Link copied to clipboard
data class ChatbotSns(val value: List<String>) : ChatChannel

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.

Link copied to clipboard
data class Empty(val value: EmptyChatChannel) : ChatChannel

Used to remove the chat channel from an incident record or response plan.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this ChatChannel as a ChatbotSns and retrieves its List value. Throws an exception if the ChatChannel is not a ChatbotSns.

Link copied to clipboard

Casts this ChatChannel as a ChatbotSns and retrieves its List value. Returns null if the ChatChannel is not a ChatbotSns.

Link copied to clipboard

Casts this ChatChannel as a Empty and retrieves its aws.sdk.kotlin.services.ssmincidents.model.EmptyChatChannel value. Throws an exception if the ChatChannel is not a Empty.

Link copied to clipboard

Casts this ChatChannel as a Empty and retrieves its aws.sdk.kotlin.services.ssmincidents.model.EmptyChatChannel value. Returns null if the ChatChannel is not a Empty.