Module Values.StartMessageMoveTaskResultSource

Starts an asynchronous task to move messages from a specified source queue to a specified destination queue. This action is currently limited to supporting message redrive from queues that are configured as dead-letter queues (DLQs) of other Amazon SQS queues only. Non-SQS queue sources of dead-letter queues, such as Lambda or Amazon SNS topics, are currently not supported. In dead-letter queues redrive context, the StartMessageMoveTask the source queue is the DLQ, while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Only one active message movement task is supported per queue at any given time.

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

    An identifier associated with a message movement task. You can use this identifier to cancel a specified message movement task using the CancelMessageMoveTask action.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidAddress of InvalidAddress.t
  2. | `InvalidSecurity of InvalidSecurity.t
  3. | `RequestThrottled of RequestThrottled.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `UnsupportedOperation of UnsupportedOperation.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?taskHandle:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidAddress of InvalidAddress.t | `InvalidSecurity of InvalidSecurity.t | `RequestThrottled of RequestThrottled.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `UnsupportedOperation of UnsupportedOperation.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidAddress of InvalidAddress.t | `InvalidSecurity of InvalidSecurity.t | `RequestThrottled of RequestThrottled.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `UnsupportedOperation of UnsupportedOperation.t ]
Sourceval error_to_json : error -> Yojson.Safe.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