Class: Aws::DynamoDB::Types::ListBackupsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ListBackupsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_type ⇒ String
The backups from the table specified by ‘BackupType` are listed.
-
#exclusive_start_backup_arn ⇒ 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.
-
#limit ⇒ Integer
Maximum number of backups to return at once.
-
#table_name ⇒ String
The backups from the table specified by ‘TableName` are listed.
-
#time_range_lower_bound ⇒ Time
Only backups created after this time are listed.
-
#time_range_upper_bound ⇒ Time
Only backups created before this time are listed.
Instance Attribute Details
#backup_type ⇒ String
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).
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4993 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_arn ⇒ 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. This value may be specified as the `ExclusiveStartBackupArn` of a new `ListBackups` operation in order to fetch the next page of results.
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4993 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 |
#limit ⇒ Integer
Maximum number of backups to return at once.
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4993 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_name ⇒ String
The backups from the table specified by ‘TableName` are listed.
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4993 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_bound ⇒ Time
Only backups created after this time are listed. ‘TimeRangeLowerBound` is inclusive.
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4993 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_bound ⇒ Time
Only backups created before this time are listed. ‘TimeRangeUpperBound` is exclusive.
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4993 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 |