import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a Execution. * * @stability experimental */ export interface IExecutionRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a Execution resource. */ readonly executionRef: ExecutionReference; } /** * A reference to a Execution resource. * * @struct * @stability external */ export interface ExecutionReference { /** * The ExecutionArn of the Execution resource. */ readonly executionArn: string; }