class Amazonite::DynamoDB::ArchivalSummary

Overview

Contains details of a table archival operation.

Included Modules

Defined in:

dynamodb/archival_summary.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(archival_date_time : Time | Nil = nil, archival_reason : String | Nil = nil, archival_backup_arn : String | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def archival_backup_arn : String | Nil #

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.


[View source]
def archival_backup_arn=(archival_backup_arn : String | Nil) #

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.


[View source]
def archival_date_time : Time | Nil #

The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.


[View source]
def archival_date_time=(archival_date_time : Time | Nil) #

The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.


[View source]
def archival_reason : String | Nil #

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.

[View source]
def archival_reason=(archival_reason : String | Nil) #

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.

[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def validate! : Nil #

[View source]