import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a SearchJob. * * @stability experimental */ export interface ISearchJobRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a SearchJob resource. */ readonly searchJobRef: SearchJobReference; } /** * A reference to a SearchJob resource. * * @struct * @stability external */ export interface SearchJobReference { /** * The SearchJobArn of the SearchJob resource. */ readonly searchJobArn: string; }