Class: Aws::MediaConvert::Types::SearchJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::SearchJobsResponse
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
Successful search jobs requests return a JSON array of jobs. If you don't specify how they are ordered, you will receive the most recently created first.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Types::Job>
List of jobs.
-
#next_token ⇒ String
Use this string to request the next batch of jobs.
Instance Attribute Details
#jobs ⇒ Array<Types::Job>
List of jobs.
11997 11998 11999 12000 12001 12002 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 11997 class SearchJobsResponse < Struct.new( :jobs, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Use this string to request the next batch of jobs.
11997 11998 11999 12000 12001 12002 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 11997 class SearchJobsResponse < Struct.new( :jobs, :next_token) SENSITIVE = [] include Aws::Structure end |