Class: Aws::BackupSearch::Types::ListSearchJobResultsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BackupSearch::Types::ListSearchJobResultsOutput
- Defined in:
- gems/aws-sdk-backupsearch/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 search job results.
-
#results ⇒ Array<Types::ResultItem>
The results consist of either EBSResultItem or S3ResultItem.
Instance Attribute Details
#next_token ⇒ String
The next item following a partial list of search job results.
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.
603 604 605 606 607 608 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 603 class ListSearchJobResultsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end |
#results ⇒ Array<Types::ResultItem>
The results consist of either EBSResultItem or S3ResultItem.
603 604 605 606 607 608 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 603 class ListSearchJobResultsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end |