Class: Aws::DynamoDB::Types::ListBackupsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ListBackupsOutput
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_summaries ⇒ Array<Types::BackupSummary>
List of
BackupSummaryobjects. -
#last_evaluated_backup_arn ⇒ String
The ARN of the backup last evaluated when the current page of results was returned, inclusive of the current page of results.
Instance Attribute Details
#backup_summaries ⇒ Array<Types::BackupSummary>
List of BackupSummary objects.
5467 5468 5469 5470 5471 5472 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5467 class ListBackupsOutput < Struct.new( :backup_summaries, :last_evaluated_backup_arn) SENSITIVE = [] include Aws::Structure end |
#last_evaluated_backup_arn ⇒ String
The ARN of the backup last evaluated when the current page of
results was returned, inclusive of the current page of results. This
value may be specified as the ExclusiveStartBackupArn of a new
ListBackups operation in order to fetch the next page of results.
If LastEvaluatedBackupArn is empty, then the last page of results
has been processed and there are no more results to be retrieved.
If LastEvaluatedBackupArn is not empty, this may or may not
indicate that there is more data to be returned. All results are
guaranteed to have been returned if and only if no value for
LastEvaluatedBackupArn is returned.
5467 5468 5469 5470 5471 5472 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5467 class ListBackupsOutput < Struct.new( :backup_summaries, :last_evaluated_backup_arn) SENSITIVE = [] include Aws::Structure end |