Module Values.NotificationSettingDetailSource

The 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.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Indicates whether the notification setting is enabled.

    *)
  2. event : NotificationEvent.t option;
    (*

    The event to which this notification setting is applied.

    *)
  3. threshold : NotificationSettingDetailThresholdInteger.t option;
    (*

    The number of days before a notification event.

    *)
  4. 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.

    *)
  5. 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.

    *)
}
Sourceval make : ?enabled:??? -> ?event:??? -> ?threshold:??? -> ?channel:??? -> ?configuredBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of NotificationSettingDetailThresholdInteger.t | `String of NotificationSettingDetailConfiguredByString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t