You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DynamoDB::Types::ListBackupsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListBackupsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  table_name: "TableName",
  limit: 1,
  time_range_lower_bound: Time.now,
  time_range_upper_bound: Time.now,
  exclusive_start_backup_arn: "BackupArn",
  backup_type: "USER", # accepts USER, SYSTEM, AWS_BACKUP, ALL
}

Instance Attribute Summary collapse

Instance Attribute Details

#backup_typeString

The backups from the table specified by BackupType are listed.

Where BackupType can be:

  • USER - On-demand backup created by you.

  • SYSTEM - On-demand backup automatically created by DynamoDB.

  • ALL - All types of on-demand backups (USER and SYSTEM).

    Possible values:

    • USER
    • SYSTEM
    • AWS_BACKUP
    • ALL

Returns:

  • (String)

    The backups from the table specified by BackupType are listed.

#exclusive_start_backup_arnString

LastEvaluatedBackupArn is the Amazon Resource Name (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.

Returns:

  • (String)

    LastEvaluatedBackupArn is the Amazon Resource Name (ARN) of the backup last evaluated when the current page of results was returned, inclusive of the current page of results.

#limitInteger

Maximum number of backups to return at once.

Returns:

  • (Integer)

    Maximum number of backups to return at once.

#table_nameString

The backups from the table specified by TableName are listed.

Returns:

  • (String)

    The backups from the table specified by TableName are listed.

#time_range_lower_boundTime

Only backups created after this time are listed. TimeRangeLowerBound is inclusive.

Returns:

  • (Time)

    Only backups created after this time are listed.

#time_range_upper_boundTime

Only backups created before this time are listed. TimeRangeUpperBound is exclusive.

Returns:

  • (Time)

    Only backups created before this time are listed.