Module Values.NotificationOutputSource

The details of a notification generated in Amazon DataZone.

Sourcetype nonrec t = {
  1. identifier : TaskId.t option;
    (*

    The identifier of the notification.

    *)
  2. domainIdentifier : DomainId.t option;
    (*

    The identifier of a Amazon DataZone domain in which the notification exists.

    *)
  3. type_ : NotificationType.t option;
    (*

    The type of the notification.

    *)
  4. topic : Topic.t option;
    (*

    The topic of the notification.

    *)
  5. title : Title.t option;
    (*

    The title of the notification.

    *)
  6. message : Message.t option;
    (*

    The message included in the notification.

    *)
  7. status : TaskStatus.t option;
    (*

    The status included in the notification.

    *)
  8. creationTimestamp : Timestamp.t option;
    (*

    The timestamp of when a notification was created.

    *)
  9. lastUpdatedTimestamp : Timestamp.t option;
    (*

    The timestamp of when the notification was last updated.

    *)
  10. metadata : MetadataMap.t option;
    (*

    The metadata included in the notification.

    *)
}
Sourceval make : ?identifier:??? -> ?domainIdentifier:??? -> ?type_:??? -> ?topic:??? -> ?title:??? -> ?message:??? -> ?status:??? -> ?actionLink:??? -> ?creationTimestamp:??? -> ?lastUpdatedTimestamp:??? -> ?metadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of TaskId.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list | `Timestamp of 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