Class: Aws::Glacier::Types::ListJobsOutput

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

Overview

Contains the Amazon Glacier response to your request.

Instance Attribute Summary collapse

Instance Attribute Details

#job_listArray<Types::GlacierJobDescription>

A list of job objects. Each job object contains metadata describing the job.

Returns:



1854
1855
1856
1857
1858
# File 'lib/aws-sdk-glacier/types.rb', line 1854

class ListJobsOutput < Struct.new(
  :job_list,
  :marker)
  include Aws::Structure
end

#markerString

An opaque string used for pagination that specifies the job at which the listing of jobs should begin. You get the ‘marker` value from a previous List Jobs response. You only need to include the marker if you are continuing the pagination of the results started in a previous List Jobs request.

Returns:

  • (String)


1854
1855
1856
1857
1858
# File 'lib/aws-sdk-glacier/types.rb', line 1854

class ListJobsOutput < Struct.new(
  :job_list,
  :marker)
  include Aws::Structure
end