UNPKG

cdk-amazon-chime-resources

Version:

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

24 lines (23 loc) 595 B
import { Construct } from 'constructs'; /** * Props for `AppInstance`. */ export interface AppInstanceAdminProps { /** * The name of the app instance. * * @default - None */ readonly appInstanceAdminArn: string; /** * The name of the app instance. * * @default - None */ readonly appInstanceArn: string; } export declare class MessagingAppInstanceAdmin extends Construct { readonly appInstanceAdminArn: string; readonly appInstanceAdminName: string; constructor(scope: Construct, id: string, props: AppInstanceAdminProps); }