Class: Aws::Glacier::Types::ListJobsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glacier::Types::ListJobsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glacier/types.rb
Overview
Contains the Amazon S3 Glacier response to your request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_list ⇒ Array<Types::GlacierJobDescription>
A list of job objects.
-
#marker ⇒ String
An opaque string used for pagination that specifies the job at which the listing of jobs should begin.
Instance Attribute Details
#job_list ⇒ Array<Types::GlacierJobDescription>
A list of job objects. Each job object contains metadata describing the job.
1537 1538 1539 1540 1541 1542 |
# File 'lib/aws-sdk-glacier/types.rb', line 1537 class ListJobsOutput < Struct.new( :job_list, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
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.
1537 1538 1539 1540 1541 1542 |
# File 'lib/aws-sdk-glacier/types.rb', line 1537 class ListJobsOutput < Struct.new( :job_list, :marker) SENSITIVE = [] include Aws::Structure end |