GET
/
create
/
service
/
db
/
dynamodb
/
{YOUR_DB_NAME}
DynamoDB API
curl --request GET \
  --url https://7gzkqkjgcg.execute-api.us-east-2.amazonaws.com/stage/create/service/db/dynamodb/{YOUR_DB_NAME}
{
  "statusCode": 200,
  "body" {
    ...
    compelete: true,
  }
}

Path

YOUR_DB_NAME
string
required
The name that you want to use to reference the DynamoDB you are creating. Must only be alpha numeric with only lower case letters and no special characters except hyphens.

Response

statusCode
number
Based off of standard HTTP request guidelines
body
object
Information concerning your newly created DynamoDB table
{
  "statusCode": 200,
  "body" {
    ...
    compelete: true,
  }
}