Module Values.PublishBatchResultEntrySource

Encloses data related to a successful message in a batch request for topic.

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

    The Id of an entry in a batch request.

    *)
  2. messageId : MessageId.t option;
    (*

    An identifier for the message.

    *)
  3. sequenceNumber : String_.t option;
    (*

    This parameter applies only to FIFO (first-in-first-out) topics. The large, non-consecutive number that Amazon SNS assigns to each message. The length of SequenceNumber is 128 bits. SequenceNumber continues to increase for a particular MessageGroupId.

    *)
}
Sourceval make : ?id:??? -> ?messageId:??? -> ?sequenceNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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