Class CfnInvestigationGroup.ChatbotNotificationChannelProperty
Use this structure to integrate CloudWatch investigations with chat applications.
Inherited Members
Namespace: Amazon.CDK.AWS.AIOps
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInvestigationGroup.ChatbotNotificationChannelProperty : CfnInvestigationGroup.IChatbotNotificationChannelProperty
Syntax (vb)
Public Class CfnInvestigationGroup.ChatbotNotificationChannelProperty Implements CfnInvestigationGroup.IChatbotNotificationChannelProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AIOps;
var chatbotNotificationChannelProperty = new ChatbotNotificationChannelProperty {
ChatConfigurationArns = new [] { "chatConfigurationArns" },
SnsTopicArn = "snsTopicArn"
};
Synopsis
Constructors
| ChatbotNotificationChannelProperty() | Use this structure to integrate CloudWatch investigations with chat applications. |
Properties
| ChatConfigurationArns | Returns the Amazon Resource Name (ARN) of any third-party chat integrations configured for the account. |
| SnsTopicArn | Returns the ARN of an Amazon topic used for third-party chat integrations. |
Constructors
ChatbotNotificationChannelProperty()
Use this structure to integrate CloudWatch investigations with chat applications.
public ChatbotNotificationChannelProperty()
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AIOps;
var chatbotNotificationChannelProperty = new ChatbotNotificationChannelProperty {
ChatConfigurationArns = new [] { "chatConfigurationArns" },
SnsTopicArn = "snsTopicArn"
};
Properties
ChatConfigurationArns
Returns the Amazon Resource Name (ARN) of any third-party chat integrations configured for the account.
public string[]? ChatConfigurationArns { get; set; }
Property Value
string[]
Remarks
SnsTopicArn
Returns the ARN of an Amazon topic used for third-party chat integrations.
public string? SnsTopicArn { get; set; }