### Self-service - [ ] I'd be willing to implement this feature ### Problem ```js import AWS from "aws-sdk"; const { DynamoDB } = AWS; const client = new DynamoDB(); ``` ### Solution ```js import { DynamoDB } from "@aws-sdk/client-dynamodb"; const client = new DynamoDB(); ``` ### Alternatives N/A ### Additional context Noted when working on utility https://github.com/aws/aws-sdk-js-codemod/pull/781