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