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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInvestigationGroup.ChatbotNotificationChannelProperty
static final class
An implementation forCfnInvestigationGroup.ChatbotNotificationChannelProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChatConfigurationArns
Returns the Amazon Resource Name (ARN) of any third-party chat integrations configured for the account.- See Also:
-
getSnsTopicArn
Returns the ARN of an Amazon SNS topic used for third-party chat integrations.- See Also:
-
builder
@Stability(Stable) static CfnInvestigationGroup.ChatbotNotificationChannelProperty.Builder builder()
-