Module Values.PutNotificationSettingsRequestSource

Attaches a list of notification settings to a trust anchor. A notification setting includes information such as event name, threshold, status of the notification setting, and the channel to notify. Required permissions: rolesanywhere:PutNotificationSettings.

Sourcetype nonrec t = {
  1. trustAnchorId : Uuid.t;
    (*

    The unique identifier of the trust anchor.

    *)
  2. notificationSettings : NotificationSettings.t;
    (*

    A list of notification settings to be associated to the trust anchor.

    *)
}
Sourceval context_ : string
Sourceval make : trustAnchorId:Uuid.t -> notificationSettings:NotificationSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of NotificationSettingThresholdInteger.t ]) list ] list | `String of Uuid.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