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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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. (The default setting if no other backup types are specified.)

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

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

Returns:

  • (String)


5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5220

class ListBackupsInput < Struct.new(
  :table_name,
  :limit,
  :time_range_lower_bound,
  :time_range_upper_bound,
  :exclusive_start_backup_arn,
  :backup_type)
  SENSITIVE = []
  include Aws::Structure
end

#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)


5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5220

class ListBackupsInput < Struct.new(
  :table_name,
  :limit,
  :time_range_lower_bound,
  :time_range_upper_bound,
  :exclusive_start_backup_arn,
  :backup_type)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

Maximum number of backups to return at once.

Returns:

  • (Integer)


5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5220

class ListBackupsInput < Struct.new(
  :table_name,
  :limit,
  :time_range_lower_bound,
  :time_range_upper_bound,
  :exclusive_start_backup_arn,
  :backup_type)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

Lists the backups from the table specified in TableName. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.

Returns:

  • (String)


5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5220

class ListBackupsInput < Struct.new(
  :table_name,
  :limit,
  :time_range_lower_bound,
  :time_range_upper_bound,
  :exclusive_start_backup_arn,
  :backup_type)
  SENSITIVE = []
  include Aws::Structure
end

#time_range_lower_boundTime

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

Returns:

  • (Time)


5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5220

class ListBackupsInput < Struct.new(
  :table_name,
  :limit,
  :time_range_lower_bound,
  :time_range_upper_bound,
  :exclusive_start_backup_arn,
  :backup_type)
  SENSITIVE = []
  include Aws::Structure
end

#time_range_upper_boundTime

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

Returns:

  • (Time)


5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5220

class ListBackupsInput < Struct.new(
  :table_name,
  :limit,
  :time_range_lower_bound,
  :time_range_upper_bound,
  :exclusive_start_backup_arn,
  :backup_type)
  SENSITIVE = []
  include Aws::Structure
end