Interface CfnInvestigationGroup.ChatbotNotificationChannelProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInvestigationGroup.ChatbotNotificationChannelProperty.Jsii$Proxy
Enclosing class:
CfnInvestigationGroup

@Stability(Stable) public static interface CfnInvestigationGroup.ChatbotNotificationChannelProperty extends software.amazon.jsii.JsiiSerializable
Use this structure to integrate CloudWatch investigations with chat applications.

This structure is a string array. For the first string, specify the ARN of an Amazon SNS topic. For the array of strings, specify the ARNs of one or more chat applications configurations that you want to associate with that topic. For more information about these configuration ARNs, see Getting started with Amazon Q in chat applications and Resource type defined by AWS Chatbot .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.aiops.*;
 ChatbotNotificationChannelProperty chatbotNotificationChannelProperty = ChatbotNotificationChannelProperty.builder()
         .chatConfigurationArns(List.of("chatConfigurationArns"))
         .snsTopicArn("snsTopicArn")
         .build();
 

See Also: