Module Values_1.NotificationSource

Contains information about a notification, including its content, priority, recipients, and metadata.

Sourcetype nonrec t = {
  1. content : Values_0.NotificationContent.t option;
    (*

    The localized content of the notification. A map where keys are locale codes and values are the notification text in that locale.

    *)
  2. id : Values_0.NotificationId.t option;
    (*

    The unique identifier for the notification.

    *)
  3. arn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the notification.

    *)
  4. priority : NotificationPriority.t option;
    (*

    The priority level of the notification. Valid values are URGENT, HIGH, and LOW.

    *)
  5. recipients : Values_0.RecipientList.t option;
    (*

    A list of Amazon Resource Names (ARNs) identifying the recipients of the notification. Maximum of 200 recipients.

    *)
  6. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The timestamp when the notification was last modified.

    *)
  7. createdAt : Values_0.Timestamp.t option;
    (*

    The timestamp when the notification was created.

    *)
  8. expiresAt : Values_0.Timestamp.t option;
    (*

    The timestamp when the notification expires and is no longer displayed to users.

    *)
  9. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The AWS Region where the notification was last modified.

    *)
  10. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval make : ?content:??? -> ?id:??? -> ?arn:??? -> ?priority:??? -> ?recipients:??? -> ?lastModifiedTime:??? -> ?createdAt:??? -> ?expiresAt:??? -> ?lastModifiedRegion:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `Map of ([> `Enum of string | `String of string ] * [> `String of string ]) list | `String of Values_0.NotificationId.t | `Timestamp of Values_0.Timestamp.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