Class: Aws::DynamoDB::Types::BackupDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::BackupDetails
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Contains the details of the backup created for the table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_arn ⇒ String
ARN associated with the backup.
-
#backup_creation_date_time ⇒ Time
Time at which the backup was created.
-
#backup_expiry_date_time ⇒ Time
Time at which the automatic on-demand backup created by DynamoDB will expire.
-
#backup_name ⇒ String
Name of the requested backup.
-
#backup_size_bytes ⇒ Integer
Size of the backup in bytes.
-
#backup_status ⇒ String
Backup can be in one of the following states: CREATING, ACTIVE, DELETED.
-
#backup_type ⇒ String
BackupType:.
Instance Attribute Details
#backup_arn ⇒ String
ARN associated with the backup.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |
#backup_creation_date_time ⇒ Time
Time at which the backup was created. This is the request time of the backup.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |
#backup_expiry_date_time ⇒ Time
Time at which the automatic on-demand backup created by DynamoDB
will expire. This SYSTEM
on-demand backup expires automatically 35
days after its creation.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |
#backup_name ⇒ String
Name of the requested backup.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |
#backup_size_bytes ⇒ Integer
Size of the backup in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |
#backup_status ⇒ String
Backup can be in one of the following states: CREATING, ACTIVE, DELETED.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |
#backup_type ⇒ String
BackupType:
USER
- You create and manage these using the on-demand backup feature.SYSTEM
- If you delete a table with point-in-time recovery enabled, aSYSTEM
backup is automatically created and is retained for 35 days (at no additional cost). System backups allow you to restore the deleted table to the state it was in just before the point of deletion.AWS_BACKUP
- On-demand backup created by you from Backup service.
570 571 572 573 574 575 576 577 578 579 580 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 570 class BackupDetails < Struct.new( :backup_arn, :backup_name, :backup_size_bytes, :backup_status, :backup_type, :backup_creation_date_time, :backup_expiry_date_time) SENSITIVE = [] include Aws::Structure end |