Class: Aws::Amplify::Types::ListJobsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListJobsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The maximum number of records to list in a single response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_summaries ⇒ Array<Types::JobSummary>
The result structure for the list job result request.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#job_summaries ⇒ Array<Types::JobSummary>
The result structure for the list job result request.
2207 2208 2209 2210 2211 2212 |
# File 'lib/aws-sdk-amplify/types.rb', line 2207 class ListJobsResult < Struct.new( :job_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. If non-null the pagination token is returned in a result. Pass its value in another request to retrieve more entries.
2207 2208 2209 2210 2211 2212 |
# File 'lib/aws-sdk-amplify/types.rb', line 2207 class ListJobsResult < Struct.new( :job_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |