cdk-insights
Version:
AWS CDK security and cost analysis tool with AI-powered insights
12 lines (11 loc) • 403 B
TypeScript
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 {};