Interface CfnNotificationChannel.NotificationFilterConfigProperty

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

@Stability(Stable) public static interface CfnNotificationChannel.NotificationFilterConfigProperty extends software.amazon.jsii.JsiiSerializable
The filter configurations for the Amazon SNS notification topic you use with DevOps Guru.

You can choose to specify which events or message types to receive notifications for. You can also choose to specify which severity levels to receive notifications for.

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.*;
 NotificationFilterConfigProperty notificationFilterConfigProperty = NotificationFilterConfigProperty.builder()
         .messageTypes(List.of("messageTypes"))
         .severities(List.of("severities"))
         .build();
 

See Also: