Module Values_0.SendNotificationActionDefinitionSource

Information about the send notification action.

Sourcetype nonrec t = {
  1. deliveryMethod : NotificationDeliveryType.t;
    (*

    Notification delivery method.

    *)
  2. subject : Subject.t option;
    (*

    The subject of the email if the delivery method is EMAIL. Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide.

    *)
  3. content : Content.t;
    (*

    Notification content. Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide.

    *)
  4. contentType : NotificationContentType.t;
    (*

    Content type format.

    *)
  5. recipient : NotificationRecipientType.t;
    (*

    Notification recipient.

    *)
  6. exclusion : NotificationRecipientType.t option;
    (*

    Recipients to exclude from notification.

    *)
}
Sourceval context_ : string
Sourceval make : ?subject:??? -> ?exclusion:??? -> deliveryMethod:NotificationDeliveryType.t -> content:Content.t -> contentType:NotificationContentType.t -> recipient:NotificationRecipientType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Subject.t | `Structure of (string * [> `List of [> `String of UserId.t ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list ]) list ]) 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