UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

30 lines (29 loc) 649 B
import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a Feed. * * @stability experimental */ export interface IFeedRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a Feed resource. */ readonly feedRef: FeedReference; } /** * A reference to a Feed resource. * * @struct * @stability external */ export interface FeedReference { /** * The Id of the Feed resource. */ readonly feedId: string; /** * The ARN of the Feed resource. */ readonly feedArn: string; }