UNPKG

cdk-insights

Version:

AWS CDK security and cost analysis tool with AI-powered insights

8 lines (7 loc) 338 B
import type { GetItemCommand, GetItemCommandOutput, PutItemCommand, PutItemCommandOutput } from '@aws-sdk/client-dynamodb'; export type DynamoDBGetClient = { send: (command: GetItemCommand) => Promise<GetItemCommandOutput>; }; export type DynamoDBPutClient = { send: (command: PutItemCommand) => Promise<PutItemCommandOutput>; };