import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a TapePool. * * @stability experimental */ export interface ITapePoolRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a TapePool resource. */ readonly tapePoolRef: TapePoolReference; } /** * A reference to a TapePool resource. * * @struct * @stability external */ export interface TapePoolReference { /** * The PoolARN of the TapePool resource. */ readonly poolArn: string; /** * The PoolId of the TapePool resource. */ readonly poolId: string; }