Class: Aws::DynamoDB::Types::ListBackupsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#backup_summariesArray<Types::BackupSummary>

List of ‘BackupSummary` objects.

Returns:



3916
3917
3918
3919
3920
# File 'lib/aws-sdk-dynamodb/types.rb', line 3916

class ListBackupsOutput < Struct.new(
  :backup_summaries,
  :last_evaluated_backup_arn)
  include Aws::Structure
end

#last_evaluated_backup_arnString

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 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.

Returns:

  • (String)


3916
3917
3918
3919
3920
# File 'lib/aws-sdk-dynamodb/types.rb', line 3916

class ListBackupsOutput < Struct.new(
  :backup_summaries,
  :last_evaluated_backup_arn)
  include Aws::Structure
end