Values.NotificationSettingDetailSourceThe state of a notification setting. A notification setting includes information such as event name, threshold, status of the notification setting, and the channel to notify.
type nonrec t = {enabled : Boolean.t option;Indicates whether the notification setting is enabled.
*)event : NotificationEvent.t option;The event to which this notification setting is applied.
*)threshold : NotificationSettingDetailThresholdInteger.t option;The number of days before a notification event.
*)channel : NotificationChannel.t option;The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health Dashboard to notify for an event. In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*)configuredBy : NotificationSettingDetailConfiguredByString.t option;The principal that configured the notification setting. For default settings configured by IAM Roles Anywhere, the value is rolesanywhere.amazonaws.com, and for customized notifications settings, it is the respective account ID.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `Integer of NotificationSettingDetailThresholdInteger.t
| `String of NotificationSettingDetailConfiguredByString.t ])
list ]