import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a SoftwareSet. * * @stability experimental */ export interface ISoftwareSetRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a SoftwareSet resource. */ readonly softwareSetRef: SoftwareSetReference; } /** * A reference to a SoftwareSet resource. * * @struct * @stability external */ export interface SoftwareSetReference { /** * The Arn of the SoftwareSet resource. */ readonly softwareSetArn: string; }