Dynamo Table Settings
- UI
- CLI
- API
You can view and update key-value store collection settings in the Settings tab.
View Collection Settings
- Log in to your Macrometa account.
- Click Data > Collections.
- Click the collection for which you want to view the settings.
- Click Settings to view the Settings tab.
Collection Settings
Dynamo Table Settings
Dynamo Table settings are displayed as a table schema similar to the following code block.
{
  "TableName": "Dynamo",
  "TableStatus": "ACTIVE",
  "TableArn": "426548253",
  "ItemCount": 0,
  "KeySchema": [
    {
      "AttributeName": "dyn",
      "KeyType": "HASH"
    }
  ],
  "CreationDateTime": 1658949141,
  "AttributeDefinitions": [
    {
      "AttributeName": "dyn",
      "AttributeType": "S"
    }
  ]
}
In the Settings tab, you can Delete or Purge the collection.
Use gdnsl collection describe to view information about a collection.
Results will be similar to this code block:
{
  "error": false,
  "code": 200,
  "waitForSync": false,
  "name": "dynamo",
  "isSystem": false,
  "isSpot": false,
  "isLocal": false,
  "status": 3,
  "searchEnabled": false,
  "id": "27025372349",
  "type": 2,
  "hasStream": false,
  "globallyUniqueId": "hC835CABCFA79/27025372349",
  "collectionModel": "DYNAMO"
}
Use gdnsl collection update to change collection settings.
For information about API calls, refer to Get information about collection and Update collection properties.