aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
49 lines (48 loc) • 1.21 kB
TypeScript
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;
}