UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

16 lines (15 loc) 411 B
interface Tags { key: string; value: string; } interface CreateAppInstanceProps { name?: string; metadata?: string; clientRequestToken?: string; tags?: Tags[]; } export declare const CreateAppInstance: (uid: string, props: CreateAppInstanceProps) => Promise<{ appInstanceArn: string | undefined; }>; export declare const DeleteAppInstance: (uid: string) => Promise<void>; export {};