DynamoDB / Client / update_continuous_backups
update_continuous_backups#
- DynamoDB.Client.update_continuous_backups(**kwargs)#
UpdateContinuousBackups
enables or disables point in time recovery for the specified table. A successfulUpdateContinuousBackups
call returns the currentContinuousBackupsDescription
. Continuous backups areENABLED
on all tables at table creation. If point in time recovery is enabled,PointInTimeRecoveryStatus
will be set to ENABLED.Once continuous backups and point in time recovery are enabled, you can restore to any point in time within
EarliestRestorableDateTime
andLatestRestorableDateTime
.LatestRestorableDateTime
is typically 5 minutes before the current time. You can restore your table to any point in time during the last 35 days.See also: AWS API Documentation
Request Syntax
response = client.update_continuous_backups( TableName='string', PointInTimeRecoverySpecification={ 'PointInTimeRecoveryEnabled': True|False } )
- Parameters:
TableName (string) –
[REQUIRED]
The name of the table.
PointInTimeRecoverySpecification (dict) –
[REQUIRED]
Represents the settings used to enable point in time recovery.
PointInTimeRecoveryEnabled (boolean) – [REQUIRED]
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
- Return type:
dict
- Returns:
Response Syntax
{ 'ContinuousBackupsDescription': { 'ContinuousBackupsStatus': 'ENABLED'|'DISABLED', 'PointInTimeRecoveryDescription': { 'PointInTimeRecoveryStatus': 'ENABLED'|'DISABLED', 'EarliestRestorableDateTime': datetime(2015, 1, 1), 'LatestRestorableDateTime': datetime(2015, 1, 1) } } }
Response Structure
(dict) –
ContinuousBackupsDescription (dict) –
Represents the continuous backups and point in time recovery settings on the table.
ContinuousBackupsStatus (string) –
ContinuousBackupsStatus
can be one of the following states: ENABLED, DISABLEDPointInTimeRecoveryDescription (dict) –
The description of the point in time recovery settings applied to the table.
PointInTimeRecoveryStatus (string) –
The current state of point in time recovery:
ENABLED
- Point in time recovery is enabled.DISABLED
- Point in time recovery is disabled.
EarliestRestorableDateTime (datetime) –
Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.
LatestRestorableDateTime (datetime) –
LatestRestorableDateTime
is typically 5 minutes before the current time.
Exceptions
DynamoDB.Client.exceptions.TableNotFoundException
DynamoDB.Client.exceptions.ContinuousBackupsUnavailableException
DynamoDB.Client.exceptions.InternalServerError