You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaConvert::Types::ListQueuesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListQueuesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  list_by: "NAME", # accepts NAME, CREATION_DATE
  max_results: 1,
  next_token: "__string",
  order: "ASCENDING", # accepts ASCENDING, DESCENDING
}

You can send list queues requests with an empty body. You can optionally specify the maximum number, up to twenty, of queues to be returned.

Instance Attribute Summary collapse

Instance Attribute Details

#list_byString

Optional. When you request a list of queues, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don\'t specify, the service will list them by creation date.

Possible values:

  • NAME
  • CREATION_DATE

Returns:

  • (String)

    Optional.

#max_resultsInteger

Optional. Number of queues, up to twenty, that will be returned at one time.

Returns:

  • (Integer)

    Optional.

#next_tokenString

Use this string, provided with the response to a previous request, to request the next batch of queues.

Returns:

  • (String)

    Use this string, provided with the response to a previous request, to request the next batch of queues.

#orderString

Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.

Possible values:

  • ASCENDING
  • DESCENDING

Returns:

  • (String)

    Optional.