import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a AppInstance. * * @stability experimental */ export interface IAppInstanceRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a AppInstance resource. */ readonly appInstanceRef: AppInstanceReference; } /** * A reference to a AppInstance resource. * * @struct * @stability external */ export interface AppInstanceReference { /** * The AppInstanceArn of the AppInstance resource. */ readonly appInstanceArn: string; } /** * Indicates that this resource can be referenced as a AppInstanceBot. * * @stability experimental */ export interface IAppInstanceBotRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a AppInstanceBot resource. */ readonly appInstanceBotRef: AppInstanceBotReference; } /** * A reference to a AppInstanceBot resource. * * @struct * @stability external */ export interface AppInstanceBotReference { /** * The AppInstanceBotArn of the AppInstanceBot resource. */ readonly appInstanceBotArn: string; } /** * Indicates that this resource can be referenced as a AppInstanceUser. * * @stability experimental */ export interface IAppInstanceUserRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a AppInstanceUser resource. */ readonly appInstanceUserRef: AppInstanceUserReference; } /** * A reference to a AppInstanceUser resource. * * @struct * @stability external */ export interface AppInstanceUserReference { /** * The AppInstanceUserArn of the AppInstanceUser resource. */ readonly appInstanceUserArn: string; }