Class: Aws::ElasticTranscoder::Types::ListJobsByStatusRequest

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 ListJobsByStatusRequest data as a hash:

{
  status: "JobStatus", # required
  ascending: "Ascending",
  page_token: "Id",
}

The ‘ListJobsByStatusRequest` structure.

Instance Attribute Summary collapse

Instance Attribute Details

#ascendingString

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

Returns:

  • (String)


2993
2994
2995
2996
2997
2998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 2993

class ListJobsByStatusRequest < Struct.new(
  :status,
  :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)


2993
2994
2995
2996
2997
2998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 2993

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

#statusString

To get information about all of the jobs associated with the current AWS account that have a given status, specify the following status: ‘Submitted`, `Progressing`, `Complete`, `Canceled`, or `Error`.

Returns:

  • (String)


2993
2994
2995
2996
2997
2998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 2993

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