Module Values_2.NotificationSearchSummarySource

Summary information about a notification returned from a search operation.

Sourcetype nonrec t = {
  1. id : Values_0.NotificationId.t option;
    (*

    The unique identifier for the notification.

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

    The Amazon Resource Name (ARN) of the notification.

    *)
  3. instanceId : Values_0.InstanceId.t option;
    (*

    The identifier of the Amazon Connect instance.

    *)
  4. content : Values_0.NotificationContent.t option;
    (*

    The localized content of the notification.

    *)
  5. priority : Values_1.NotificationPriority.t option;
    (*

    The priority level of the notification.

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

    A list of recipient Amazon Resource Names (ARNs).

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

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

    The AWS Region where the notification was last modified.

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

    The timestamp when the notification was last modified.

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

    The tags associated with the notification.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?instanceId:??? -> ?content:??? -> ?priority:??? -> ?recipients:??? -> ?createdAt:??? -> ?expiresAt:??? -> ?lastModifiedRegion:??? -> ?lastModifiedTime:??? -> ?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