Class: Aws::Backup::Types::ListIndexedRecoveryPointsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ListIndexedRecoveryPointsOutput
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#indexed_recovery_points ⇒ Array<Types::IndexedRecoveryPoint>
This is a list of recovery points that have an associated index, belonging to the specified account.
-
#next_token ⇒ String
The next item following a partial list of returned recovery points.
Instance Attribute Details
#indexed_recovery_points ⇒ Array<Types::IndexedRecoveryPoint>
This is a list of recovery points that have an associated index, belonging to the specified account.
6596 6597 6598 6599 6600 6601 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6596 class ListIndexedRecoveryPointsOutput < Struct.new( :indexed_recovery_points, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The next item following a partial list of returned recovery points.
For example, if a request is made to return MaxResults number of
indexed recovery points, NextToken allows you to return more items
in your list starting at the location pointed to by the next token.
6596 6597 6598 6599 6600 6601 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6596 class ListIndexedRecoveryPointsOutput < Struct.new( :indexed_recovery_points, :next_token) SENSITIVE = [] include Aws::Structure end |