UNPKG

cdk-insights

Version:

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

12 lines (11 loc) 403 B
import type { CreateLicenseItem } from './createLicenseItem.types'; interface DynamoDBAttributeValue { S: string; } interface DynamoDBItem { licenseKey: DynamoDBAttributeValue; assignedToUserId: DynamoDBAttributeValue; orgId?: DynamoDBAttributeValue; } export declare const createLicenseItem: ({ licenseKey, userOrgId, assignedToUserId, }: CreateLicenseItem) => DynamoDBItem; export {};