Class: Aws::ElasticTranscoder::Types::ListPipelinesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elastictranscoder/types.rb

Overview

Note:

When making an API call, you may pass ListPipelinesRequest data as a hash:

{
  ascending: "Ascending",
  page_token: "Id",
}

The ‘ListPipelineRequest` structure.

Instance Attribute Summary collapse

Instance Attribute Details

#ascendingString

To list pipelines in chronological order by the date and time that they were created, enter ‘true`. To list pipelines in reverse chronological order, enter `false`.

Returns:

  • (String)


3041
3042
3043
3044
3045
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3041

class ListPipelinesRequest < Struct.new(
  :ascending,
  :page_token)
  include Aws::Structure
end

#page_tokenString

When Elastic Transcoder returns more than one page of results, use ‘pageToken` in subsequent `GET` requests to get each successive page of results.

Returns:

  • (String)


3041
3042
3043
3044
3045
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3041

class ListPipelinesRequest < Struct.new(
  :ascending,
  :page_token)
  include Aws::Structure
end