GetNotificationChannelFilter constructor

const GetNotificationChannelFilter({
  1. required Input<List<String>> messageTypes,
  2. required Input<List<String>> severities,
})

Creates a new GetNotificationChannelFilter. messageTypes Events to receive notifications for. severities Severity levels to receive notifications for.

Implementation

const GetNotificationChannelFilter({
  required this.messageTypes,
  required this.severities,
});