Skip to content

API : Replications

Jon Seed edited this page Aug 23, 2016 · 1 revision

Get replications

GET /replications

Returns information about all replications stored in the controller table.

Sample response data

{
  "items": [
    {
      "tableName": "SampleTableOne",
      "step": "REPLICATING",
      "state": "ACTIVE"
    },
    {
      "tableName": "SampleTableTwo",
      "step": "VALIDATING_REPLICA",
      "state": "IN_PROGRESS"
    }
  ]
}

Add Replication

POST /replications/{table-name}

Adds a new replication for a DynamoDB table.

Remove Replication

DELETE /replication/{table-name}

Stops replication of a DynamoDB table.