Module Values.ChatChannelSource

The Chatbot chat channel used for collaboration during an incident.

Sourcetype nonrec t = {
  1. chatbotSns : ChatbotSnsConfigurationSet.t option;
    (*

    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.

    *)
  2. empty : EmptyChatChannel.t option;
    (*

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

    *)
}
Sourceval make : ?chatbotSns:??? -> ?empty:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SnsArn.t ] list | `Structure of 'a list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t