Module Values.BackupDetailsSource

Contains the details of the backup created for the table.

Sourcetype nonrec t = {
  1. backupArn : BackupArn.t option;
    (*

    ARN associated with the backup.

    *)
  2. backupName : BackupName.t option;
    (*

    Name of the requested backup.

    *)
  3. backupSizeBytes : BackupSizeBytes.t option;
    (*

    Size of the backup in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

    *)
  4. backupStatus : BackupStatus.t option;
    (*

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

    *)
  5. backupType : BackupType.t option;
    (*

    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.

    *)
  6. backupCreationDateTime : BackupCreationDateTime.t option;
    (*

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

    *)
  7. backupExpiryDateTime : Date.t option;
    (*

    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.

    *)
}
Sourceval make : ?backupArn:??? -> ?backupName:??? -> ?backupSizeBytes:??? -> ?backupStatus:??? -> ?backupType:??? -> ?backupCreationDateTime:??? -> ?backupExpiryDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of BackupSizeBytes.t | `String of BackupArn.t | `Timestamp of BackupCreationDateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t