Class: Aws::DynamoDB::Types::BackupDetails

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

Overview

Contains the details of the backup created for the table.

Instance Attribute Summary collapse

Instance Attribute Details

#backup_arnString

ARN associated with the backup.

Returns:

  • (String)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end

#backup_creation_date_timeTime

Time at which the backup was created. This is the request time of the backup.

Returns:

  • (Time)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end

#backup_expiry_date_timeTime

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.

Returns:

  • (Time)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end

#backup_nameString

Name of the requested backup.

Returns:

  • (String)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end

#backup_size_bytesInteger

Size of the backup in bytes.

Returns:

  • (Integer)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end

#backup_statusString

Backup can be in one of the following states: CREATING, ACTIVE, DELETED.

Returns:

  • (String)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end

#backup_typeString

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, a `SYSTEM` 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.

Returns:

  • (String)


595
596
597
598
599
600
601
602
603
604
# File 'lib/aws-sdk-dynamodb/types.rb', line 595

class BackupDetails < Struct.new(
  :backup_arn,
  :backup_name,
  :backup_size_bytes,
  :backup_status,
  :backup_type,
  :backup_creation_date_time,
  :backup_expiry_date_time)
  include Aws::Structure
end