Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>DynamoDB DriverNew to Visual Studio Code? Get it now.

DynamoDB Driver

Khang Hua

|
35 installs
| (0) | Free
DynamoDB Driver to be used as base for new VSCode SQLTools drivers
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

SQLTools DynamoDB Driver

DynamoDB Driver for the vscode-sqltools extension.

This extension only supports PartiQL syntax.

IAM security policies with PartiQL for DynamoDB

The following IAM policy grants permissions to working with this extension.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": ["dynamodb:ListTables"],
      "Resource": ["<your_dynamo_resources>"]
    },
    {
      "Effect": "Allow",
      "Action": [
        "dynamodb:DescribeTable",
        "dynamodb:Scan",
        "dynamodb:PartiQLInsert",
        "dynamodb:PartiQLUpdate",
        "dynamodb:PartiQLDelete",
        "dynamodb:PartiQLSelect"
      ],
      "Resource": ["<your_dynamo_resources>"]
    }
  ]
}

For example:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": ["dynamodb:ListTables"],
      "Resource": ["*"]
    },
    {
      "Effect": "Allow",
      "Action": [
        "dynamodb:DescribeTable",
        "dynamodb:Scan",
        "dynamodb:PartiQLInsert",
        "dynamodb:PartiQLUpdate",
        "dynamodb:PartiQLDelete",
        "dynamodb:PartiQLSelect"
      ],
      "Resource": ["arn:aws:dynamodb:us-east-1:12345678910:table/*"]
    }
  ]
}
  • Contact us
  • Jobs
  • Privacy
  • Terms of use
  • Trademarks
© 2023 Microsoft