Class ListQueuesOptions

  • All Implemented Interfaces:
    HttpRequestOptions

    public class ListQueuesOptions
    extends BaseHttpRequestOptions
    Contains options supported in the Form API for the ListQueues operation.

    Usage

    The 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 Set queues = connection.listQueuesInRegion(queuePrefix("foo"));

    See Also:
    • Constructor Detail

      • ListQueuesOptions

        public ListQueuesOptions()
    • Method Detail

      • queuePrefix

        public 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.