Interface CfnNotificationChannel.NotificationChannelConfigProperty

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

@Stability(Stable) public static interface CfnNotificationChannel.NotificationChannelConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about notification channels you have configured with DevOps Guru.

The one supported notification channel is Amazon Simple Notification Service (Amazon SNS).

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.devopsguru.*;
 NotificationChannelConfigProperty notificationChannelConfigProperty = NotificationChannelConfigProperty.builder()
         .filters(NotificationFilterConfigProperty.builder()
                 .messageTypes(List.of("messageTypes"))
                 .severities(List.of("severities"))
                 .build())
         .sns(SnsChannelConfigProperty.builder()
                 .topicArn("topicArn")
                 .build())
         .build();