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