UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

57 lines (56 loc) 1.26 kB
import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a Dictionary. * * @stability experimental */ export interface IDictionaryRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a Dictionary resource. */ readonly dictionaryRef: DictionaryReference; } /** * A reference to a Dictionary resource. * * @struct * @stability external */ export interface DictionaryReference { /** * The Id of the Dictionary resource. */ readonly dictionaryId: string; /** * The ARN of the Dictionary resource. */ readonly dictionaryArn: string; } /** * 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; }