cdk-amazon-chime-resources
Version:

24 lines (23 loc) • 595 B
TypeScript
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);
}