Module Values.BackupSummarySource

Contains details for the backup.

Sourcetype nonrec t = {
  1. tableName : TableName.t option;
    (*

    Name of the table.

    *)
  2. tableId : TableId.t option;
    (*

    Unique identifier for the table.

    *)
  3. tableArn : TableArn.t option;
    (*

    ARN associated with the table.

    *)
  4. backupArn : BackupArn.t option;
    (*

    ARN associated with the backup.

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

    Name of the specified backup.

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

    Time at which the backup was created.

    *)
  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.

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

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

    *)
  9. 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.

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

    Size of the backup in bytes.

    *)
}
Sourceval make : ?tableName:??? -> ?tableId:??? -> ?tableArn:??? -> ?backupArn:??? -> ?backupName:??? -> ?backupCreationDateTime:??? -> ?backupExpiryDateTime:??? -> ?backupStatus:??? -> ?backupType:??? -> ?backupSizeBytes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of BackupSizeBytes.t | `String of TableName.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