Class: Aws::S3Control::Types::ListJobsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListJobsResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Types::JobListDescriptor>
The list of current jobs and jobs that have ended within the last 30 days.
-
#next_token ⇒ String
If the ‘List Jobs` request produced more than the maximum number of results, you can pass this value into a subsequent `List Jobs` request in order to retrieve the next page of results.
Instance Attribute Details
#jobs ⇒ Array<Types::JobListDescriptor>
The list of current jobs and jobs that have ended within the last 30 days.
5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-s3control/types.rb', line 5098 class ListJobsResult < Struct.new( :next_token, :jobs) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the ‘List Jobs` request produced more than the maximum number of results, you can pass this value into a subsequent `List Jobs` request in order to retrieve the next page of results.
5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-s3control/types.rb', line 5098 class ListJobsResult < Struct.new( :next_token, :jobs) SENSITIVE = [] include Aws::Structure end |