Class: Aws::DynamoDB::Types::ArchivalSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ArchivalSummary
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Contains details of a table archival operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#archival_backup_arn ⇒ String
The Amazon Resource Name (ARN) of the backup the table was archived to, when applicable in the archival reason.
-
#archival_date_time ⇒ Time
The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.
-
#archival_reason ⇒ String
The reason DynamoDB archived the table.
Instance Attribute Details
#archival_backup_arn ⇒ String
The Amazon Resource Name (ARN) of the backup the table was archived to, when applicable in the archival reason. If you wish to restore this backup to the same table name, you will need to delete the original table.
40 41 42 43 44 45 46 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 40 class ArchivalSummary < Struct.new( :archival_date_time, :archival_reason, :archival_backup_arn) SENSITIVE = [] include Aws::Structure end |
#archival_date_time ⇒ Time
The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.
40 41 42 43 44 45 46 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 40 class ArchivalSummary < Struct.new( :archival_date_time, :archival_reason, :archival_backup_arn) SENSITIVE = [] include Aws::Structure end |
#archival_reason ⇒ String
The reason DynamoDB archived the table. Currently, the only possible value is:
INACCESSIBLE_ENCRYPTION_CREDENTIALS
- The table was archived due to the table's KMS key being inaccessible for more than seven days. An On-Demand backup was created at the archival time.
^
40 41 42 43 44 45 46 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 40 class ArchivalSummary < Struct.new( :archival_date_time, :archival_reason, :archival_backup_arn) SENSITIVE = [] include Aws::Structure end |