Package org.jclouds.sqs.options
Class ListQueuesOptions
- java.lang.Object
- 
- org.jclouds.http.options.BaseHttpRequestOptions
- 
- org.jclouds.sqs.options.ListQueuesOptions
 
 
- 
- All Implemented Interfaces:
- HttpRequestOptions
 
 public class ListQueuesOptions extends BaseHttpRequestOptions Contains options supported in the Form API for the ListQueues operation.UsageThe recommended way to instantiate a ListQueuesOptions object is to statically import ListQueuesOptions.Builder.* and invoke a static creation method followed by an instance mutator (if needed):import static org.jclouds.sqs.options.ListQueuesOptions.Builder.* SQSApi connection = // get connection Setqueues = connection.listQueuesInRegion(queuePrefix("foo")); 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classListQueuesOptions.Builder
 - 
Field Summary- 
Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptionsformParameters, headers, pathSuffix, payload, queryParameters
 
- 
 - 
Constructor SummaryConstructors Constructor Description ListQueuesOptions()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ListQueuesOptionsqueuePrefix(String prefix)String to use for filtering the list results.- 
Methods inherited from class org.jclouds.http.options.BaseHttpRequestOptionsbuildFormParameters, buildPathSuffix, buildQueryParameters, buildRequestHeaders, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader, toString
 
- 
 
- 
- 
- 
Method Detail- 
queuePrefixpublic ListQueuesOptions queuePrefix(String prefix) String to use for filtering the list results. Only those queues whose name begins with the specified string are returned.- Parameters:
- prefix- Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
 
 
- 
 
-