Public
Documentation Settings

Autodyne

Autodyne lets you use AWS DynamoDB from your Heroku Application.

Add it to your Heroku app at https://elements.heroku.com/addons/autodyne.

After you have installed the addon, you can use the AWS credentials and these APIs to manage your DynamoDB table.

POSTUpdate Table Indexes Indexes

https://api.autodyne.mixable.net/dynamodb

To prevent sensitive operations, your Autodyne addon IAM user does not have dynamodb:UpdateTable permissions. Instead Autodyne offers a restricted Update Table API.

Requests to this endpoint must still be signed with an AWS V4 Signature from your addon access key and secret and require a custom X-Target header.

SettingAutodyne APIAWS API
Endpointhttps://api.autodyne.mixable.nethttps://dynamodb.us-west-2.amazonaws.com
AuthAWS V4 SignatureAWS V4 Signature
HeaderX-Target=DynamoDB_20120810.UpdateTableX-Amz-Target=DynamoDB_20120810.UpdateTable
AUTHORIZATIONAWS Signature
Access Key

AKIAJNN2M647OGACKWGA

Secret Key

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

HEADERS
X-Target

DynamoDB_20120810.UpdateTable

Content-Type

application/json

Bodyraw
{
    "TableName": "autodyne-infinite-12346",
    "AttributeDefinitions": [
        {
            "AttributeName": "uuid",
            "AttributeType": "S"
        }
    ],
    "GlobalSecondaryIndexUpdates": [
        {
            "Create": {
                "IndexName": "uuid",
                "KeySchema": [
                    {
                        "AttributeName": "uuid",
                        "KeyType": "HASH"
                    }
                ],
                "Projection": {
                    "ProjectionType": "ALL"
                }
            }
        }
    ]
}
Example Request
curl
curl --location 'https://api.autodyne.mixable.net/dynamodb' \
--header 'X-Target: DynamoDB_20120810.UpdateTable' \
--header 'Content-Type: application/json' \
--data '{
    "TableName": "autodyne-infinite-12346",
    "AttributeDefinitions": [
        {
            "AttributeName": "uuid",
            "AttributeType": "S"
        }
    ],
    "GlobalSecondaryIndexUpdates": [
        {
            "Create": {
                "IndexName": "uuid",
                "KeySchema": [
                    {
                        "AttributeName": "uuid",
                        "KeyType": "HASH"
                    }
                ],
                "Projection": {
                    "ProjectionType": "ALL"
                }
            }
        }
    ]
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers