/** * Constructs a new DeleteMessageBatchRequest object. Callers should use the setter or fluent * setter (with...) methods to initialize any additional object members. * * @param queueUrl */ public DeleteMessageBatchRequest(String queueUrl) { setQueueUrl(queueUrl); }
/** * Constructs a new DeleteMessageBatchRequest object. Callers should use the setter or fluent * setter (with...) methods to initialize any additional object members. * * @param queueUrl * @param entries */ public DeleteMessageBatchRequest( String queueUrl, java.util.List<DeleteMessageBatchRequestEntry> entries) { setQueueUrl(queueUrl); setEntries(entries); }
/** * The URL of the Amazon SQS queue from which messages are deleted. * * <p>Queue URLs are case-sensitive. * * @param queueUrl The URL of the Amazon SQS queue from which messages are deleted. * <p>Queue URLs are case-sensitive. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteMessageBatchRequest withQueueUrl(String queueUrl) { setQueueUrl(queueUrl); return this; }