Static Amazon DynamoDB agent

Target Amazon DynamoDB

Prerequisites

To have Gluesync working on your DynamoDB AWS account you will need to have:

  • Valid user credentials with permissions: arn:aws:iam::aws:policy/AmazonDynamoDBFullAccess;

  • IAM access key obtained through AWS IAM console;

  • IAM secret key obtained through AWS IAM console;

  • Name of the region where the DynamoDB belongs to.

Setup via Web UI

  • Region: The name of the region where your DynamoDB belongs to;

  • Access Key: IAM Credential access key ID created under your AWS IAM console;

  • Secret Key IAM Credential secret created under your AWS IAM console.

Custom host credentials

This agent has no specific configuration properties.

Setup via Rest APIs

Here following an example of calling the CoreHub’s Rest API via curl to setup the connection for this Agent.

Connect the agent

curl --location --request PUT 'http://core-hub-ip-address:1717/pipelines/{pipelineId}/agents/{agentId}/config/credentials' \
--header 'Content-Type: application/json' \
--header 'Authorization: ••••••' \
--data '{
        "hostCredentials": {
        "connectionName": "myAgentNickName",
        "host": "my-region-us",
        "username": "myAccessKeyId",
        "password": "mySecretAccessKey"
}'