Method: Aws::DynamoDB::Types::BackupDetails#backup_type

Defined in:
lib/aws-sdk-dynamodb/types.rb

#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.

  • ‘AWS_BACKUP` - On-demand backup created by you from Backup service.

Returns:

  • (String)


569
570
571
572
573
574
575
576
577
578
579
# File 'lib/aws-sdk-dynamodb/types.rb', line 569

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