Package com.amazonaws.services.sqs.model
Class ListQueuesRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.sqs.model.ListQueuesRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class ListQueuesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description ListQueuesRequest()Default constructor for ListQueuesRequest object.ListQueuesRequest(String queueNamePrefix)Constructs a new ListQueuesRequest object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListQueuesRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetQueueNamePrefix()A string to use for filtering the list results.inthashCode()voidsetQueueNamePrefix(String queueNamePrefix)A string to use for filtering the list results.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListQueuesRequestwithQueueNamePrefix(String queueNamePrefix)A string to use for filtering the list results.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Constructor Detail
-
ListQueuesRequest
public ListQueuesRequest()
Default constructor for ListQueuesRequest object. Callers should use the setter or fluent setter (with...) methods to initialize the object after creating it.
-
ListQueuesRequest
public ListQueuesRequest(String queueNamePrefix)
Constructs a new ListQueuesRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.- Parameters:
queueNamePrefix- A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.Queue names are case-sensitive.
-
-
Method Detail
-
setQueueNamePrefix
public void setQueueNamePrefix(String queueNamePrefix)
A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.
Queue names are case-sensitive.
- Parameters:
queueNamePrefix- A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.Queue names are case-sensitive.
-
getQueueNamePrefix
public String getQueueNamePrefix()
A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.
Queue names are case-sensitive.
- Returns:
- A string to use for filtering the list results. Only those queues
whose name begins with the specified string are returned.
Queue names are case-sensitive.
-
withQueueNamePrefix
public ListQueuesRequest withQueueNamePrefix(String queueNamePrefix)
A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.
Queue names are case-sensitive.
- Parameters:
queueNamePrefix- A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.Queue names are case-sensitive.
- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListQueuesRequest clone()
Description copied from class:AmazonWebServiceRequestCreates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clonein classAmazonWebServiceRequest- See Also:
Object.clone()
-
-