Class: Aws::BackupSearch::Types::ListSearchJobsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BackupSearch::Types::ListSearchJobsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-backupsearch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The next item following a partial list of returned backups included in a search job.
-
#search_jobs ⇒ Array<Types::SearchJobSummary>
The search jobs among the list, with details of the returned search jobs.
Instance Attribute Details
#next_token ⇒ String
The next item following a partial list of returned backups included in a search job.
For example, if a request is made to return ‘MaxResults` number of backups, `NextToken` allows you to return more items in your list starting at the location pointed to by the next token.
652 653 654 655 656 657 |
# File 'lib/aws-sdk-backupsearch/types.rb', line 652 class ListSearchJobsOutput < Struct.new( :search_jobs, :next_token) SENSITIVE = [] include Aws::Structure end |
#search_jobs ⇒ Array<Types::SearchJobSummary>
The search jobs among the list, with details of the returned search jobs.
652 653 654 655 656 657 |
# File 'lib/aws-sdk-backupsearch/types.rb', line 652 class ListSearchJobsOutput < Struct.new( :search_jobs, :next_token) SENSITIVE = [] include Aws::Structure end |