Module Values.ChangeMessageVisibilityBatchRequestEntrySource

Encloses a receipt handle and an entry ID for each message in ChangeMessageVisibilityBatch.

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

    An identifier for this particular receipt handle used to communicate the result. The Ids of a batch request need to be unique within a request. This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).

    *)
  2. receiptHandle : String_.t;
    (*

    A receipt handle.

    *)
  3. visibilityTimeout : NullableInteger.t option;
    (*

    The new value (in seconds) for the message's visibility timeout.

    *)
}
Sourceval context_ : string
Sourceval make : ?visibilityTimeout:??? -> id:String_.t -> receiptHandle:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t | `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