DynamoDB Restore Points

The /dynamoDb/restorePoints resource collection represents all restore points created for DynamoDB tables in Veeam Backup for AWS.

Get DynamoDB Restore Points

The HTTP GET request to the /dynamoDb/restorePoints endpoint retrieves a list of all restore points of DynamoDB tables available in Veeam Backup for AWS.

SecurityBearer
Request
query Parameters
DynamoDbId
string <uuid>

Returns only restore points of a DynamoDB table with the specified AWS ID.

RestorePointAwsAccountId
string

Returns only DynamoDB restore points stored in an AWS account with the specified ID.

ResourceAwsAccountId
string

Returns only restore points of a DynamoDB table that belong to an AWS account with the specified ID.

ResourceAwsOrganizationId
string

Returns only restore points of a DynamoDB table that belong to an AWS Organization with the specified ID.

Offset
integer <int32> >= 0

Excludes from a response the first N items of a resource collection.

Limit
integer <int32> >= -1

Specifies the maximum number of items of a resource collection to return in a response.

Sort
Array of strings (DynamoDbRestorePointSortColumns)

Specifies the order of items in the response. For more information, see the Veeam Backup for AWS REST API Reference Overview, section Sort Parameter.

Items Enum: "sizeAsc" "sizeDesc" "jobTypeAsc" "jobTypeDesc" "creationTimeUtcAsc" "creationTimeUtcDesc" "restorePointAwsAccountIdAsc" "restorePointAwsAccountIdDesc"
header Parameters
x-api-version
required
string
Default: 1.7-rev0

Specifies the current version and revision of the Veeam Backup for AWS REST API.

Responses
200

OK

400

Bad Request. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

404

Not Found. One or more resources specified in the request could not be found in the specified resource collection.

500

Internal Server Error. The request has been received but could not be completed because of an internal error on the server side.

503

Service Unavailable

504

Gateway Timeout

get/api/v1/dynamoDb/restorePoints
Request samples
curl -i -X GET \
  'https://helpcenter.veeam.com/api/v1/dynamoDb/restorePoints?DynamoDbId=497f6eca-6276-4993-bfeb-53cbbbba6f08&RestorePointAwsAccountId=string&ResourceAwsAccountId=string&ResourceAwsOrganizationId=string&Offset=0&Limit=-1&Sort=sizeAsc' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'x-api-version: 1.7-rev0'
Response samples
{
  • "results": [
    ],
  • "totalCount": 0,
  • "_links": [
    ]
}

Get DynamoDB Restore Point Data

The HTTP GET request to the /dynamoDb/restorePoints/{restorePointId} endpoint retrieves information on a restore point with the specified ID.

SecurityBearer
Request
path Parameters
restorePointId
required
string <uuid>

Specifies the system ID assigned to a restore point in the Veeam Backup for AWS REST API.

header Parameters
x-api-version
required
string
Default: 1.7-rev0

Specifies the current version and revision of the Veeam Backup for AWS REST API.

Responses
200

OK

400

Bad Request. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

404

Not Found. One or more resources specified in the request could not be found in the specified resource collection.

500

Internal Server Error. The request has been received but could not be completed because of an internal error on the server side.

503

Service Unavailable

504

Gateway Timeout

get/api/v1/dynamoDb/restorePoints/{restorePointId}
Request samples
curl -i -X GET \
  'https://helpcenter.veeam.com/api/v1/dynamoDb/restorePoints/{restorePointId}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'x-api-version: 1.7-rev0'
Response samples
{
  • "policyName": "string",
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "dynamoDbId": "594d2af8-df57-46d8-b05d-20ea4264ee38",
  • "backupId": "eb7cea43-10b2-42dd-8819-ab9aed37565f",
  • "name": "string",
  • "regionName": "string",
  • "regionDisplayName": "string",
  • "jobType": "AwsDynamoDbBackup",
  • "hasManualBackup": true,
  • "createTimeUtc": "2019-08-24T14:15:22Z",
  • "completedTimeUtc": "2019-08-24T14:15:22Z",
  • "status": "string",
  • "writeCapacityUnits": 0,
  • "readCapacityUnits": 0,
  • "tableClass": "Standard",
  • "deletionProtection": true,
  • "pointInTimeRecovery": true,
  • "ttlAttribute": "string",
  • "size": 0,
  • "isStandalone": true,
  • "itemCount": 0,
  • "resourceAwsAccountId": "string",
  • "restorePointAwsAccountId": "string",
  • "encryptionKey": "string",
  • "_links": [
    ]
}

Remove DynamoDB Restore Point

The HTTP DELETE request to the /dynamoDb/restorePoints/{restorePointId} endpoint deletes a restore point created manually.

SecurityBearer
Request
path Parameters
restorePointId
required
string <uuid>

Specifies the system ID assigned to a restore point in the Veeam Backup for AWS REST API.

header Parameters
x-api-version
required
string
Default: 1.7-rev0

Specifies the current version and revision of the Veeam Backup for AWS REST API.

Responses
202

Accepted

400

Bad Request. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

404

Not Found. One or more resources specified in the request could not be found in the specified resource collection.

500

Internal Server Error. The request has been received but could not be completed because of an internal error on the server side.

503

Service Unavailable

504

Gateway Timeout

delete/api/v1/dynamoDb/restorePoints/{restorePointId}
Request samples
curl -i -X DELETE \
  'https://helpcenter.veeam.com/api/v1/dynamoDb/restorePoints/{restorePointId}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'x-api-version: 1.7-rev0'
Response samples
{}

Perform DynamoDB Table Restore

The HTTP POST request to the /dynamoDb/restorePoints/{restorePointId}/restore endpoint performs restore of a DynamoDB table to a restore point with the specified ID.

SecurityBearer
Request
path Parameters
restorePointId
required
string <uuid>

Specifies the system ID assigned to a restore point in the Veeam Backup for AWS REST API.

header Parameters
x-api-version
required
string
Default: 1.7-rev0

Specifies the current version and revision of the Veeam Backup for AWS REST API.

Request Body schema: application/json
required
restoreToOriginal
required
boolean

Defines whether to restore the table to the original location.

required
object (AuthenticationSpecification)

Specifies authentication settings used to perform the restore operation.

object (DynamoDbRestoreToDifferentSpecification)

[Applies if you restore the table to a new location, or with different settings] Specifies settings for the restored DynamoDB table.

reason
string

Specifies a reason for the restore operation.

Responses
202

Accepted

400

Bad Request. The request body is malformed, incomplete or otherwise invalid

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending a request does not have adequate privileges to access one or more objects specified in the request.

404

Not Found. One or more resources specified in the request could not be found in the specified resource collection.

500

Internal Server Error. The request has been received but could not be completed because of an internal error on the server side.

503

Service Unavailable

504

Gateway Timeout

post/api/v1/dynamoDb/restorePoints/{restorePointId}/restore
Request samples
application/json
{
  • "restoreToOriginal": true,
  • "authenticationSpecification": {
    },
  • "differentLocationSpecification": {
    },
  • "reason": "string"
}
Response samples
{}