Search code examples
typescriptamazon-dynamodbaws-cdk

CDK v2 import table TS


import { TableV2 } from 'aws-cdk-lib/aws-dynamodb';
>>>
aws-cdk-lib/aws-dynamodb"' has no exported member named 'TableV2'. Did you mean 'Table'?

The documentation shows: TypeScript aws-cdk-lib » aws_dynamodb

and 'aws-cdk-lib/aws_dynamodb' is not recognized.

So how do I import TableV2?


Solution

  • Upgrade CDK to the latest version. The TableV2 construct was added as a new feature in v2.95.0.

    Check your current CDK version with cdk --version.