Package com.amazonaws.services.sqs.model
Class ListDeadLetterSourceQueuesResult
- java.lang.Object
-
- com.amazonaws.services.sqs.model.ListDeadLetterSourceQueuesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListDeadLetterSourceQueuesResult extends Object implements Serializable, Cloneable
A list of your dead letter source queues.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListDeadLetterSourceQueuesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListDeadLetterSourceQueuesResult
clone()
boolean
equals(Object obj)
List<String>
getQueueUrls()
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.int
hashCode()
void
setQueueUrls(Collection<String> queueUrls)
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListDeadLetterSourceQueuesResult
withQueueUrls(String... queueUrls)
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.ListDeadLetterSourceQueuesResult
withQueueUrls(Collection<String> queueUrls)
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
-
-
-
Method Detail
-
getQueueUrls
public List<String> getQueueUrls()
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
- Returns:
- A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
-
setQueueUrls
public void setQueueUrls(Collection<String> queueUrls)
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
- Parameters:
queueUrls
- A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
-
withQueueUrls
public ListDeadLetterSourceQueuesResult withQueueUrls(String... queueUrls)
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
NOTE: This method appends the values to the existing list (if any). Use
setQueueUrls(java.util.Collection)
orwithQueueUrls(java.util.Collection)
if you want to override the existing values.- Parameters:
queueUrls
- A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withQueueUrls
public ListDeadLetterSourceQueuesResult withQueueUrls(Collection<String> queueUrls)
A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
- Parameters:
queueUrls
- A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListDeadLetterSourceQueuesResult clone()
-
-