Module Values.GetMessageInsightsResponseSource

Information about a message.

Sourcetype nonrec t = {
  1. messageId : OutboundMessageId.t option;
    (*

    A unique identifier for the message.

    *)
  2. fromEmailAddress : InsightsEmailAddress.t option;
    (*

    The from address used to send the message.

    *)
  3. subject : EmailSubject.t option;
    (*

    The subject line of the message.

    *)
  4. emailTags : MessageTagList.t option;
    (*

    A list of tags, in the form of name/value pairs, that were applied to the email you sent, along with Amazon SES Auto-Tags.

    *)
  5. insights : EmailInsightsList.t option;
    (*

    A set of insights associated with the message.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `NotFoundException of NotFoundException.t
  3. | `TooManyRequestsException of TooManyRequestsException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?messageId:??? -> ?fromEmailAddress:??? -> ?subject:??? -> ?emailTags:??? -> ?insights:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of BounceSubType.t ]) list ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of MessageTagName.t ]) list ] list | `String of OutboundMessageId.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