NotificationRuleTarget constructor

const NotificationRuleTarget({
  1. required Input<String> address,
  2. Input<String?>? status,
  3. Input<String?>? type,
})

Creates a new NotificationRuleTarget. address The ARN of the Amazon Q Developer in chat applications topic or Amazon Q Developer in chat applications client. status The status of the notification rule. Possible values are ENABLED and DISABLED, default is ENABLED. type The type of the notification target. Valid values are SNS, AWSChatbotSlack, and AWSChatbotMicrosoftTeams. Default value is SNS.

Implementation

const NotificationRuleTarget({
  required this.address,
  this.status,
  this.type,
});