Class: Aws::BackupSearch::Types::ListSearchResultExportJobsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BackupSearch::Types::ListSearchResultExportJobsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-backupsearch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#export_jobs ⇒ Array<Types::ExportJobSummary>
The operation returns the included export jobs.
-
#next_token ⇒ String
The next item following a partial list of returned backups included in a search job.
Instance Attribute Details
#export_jobs ⇒ Array<Types::ExportJobSummary>
The operation returns the included export jobs.
707 708 709 710 711 712 |
# File 'lib/aws-sdk-backupsearch/types.rb', line 707 class ListSearchResultExportJobsOutput < Struct.new( :export_jobs, :next_token) SENSITIVE = [] include Aws::Structure end |
#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.
707 708 709 710 711 712 |
# File 'lib/aws-sdk-backupsearch/types.rb', line 707 class ListSearchResultExportJobsOutput < Struct.new( :export_jobs, :next_token) SENSITIVE = [] include Aws::Structure end |