26 lines
632 B
TypeScript
26 lines
632 B
TypeScript
import { IEnvironmentAware } from "../environment-aware";
|
|
import * as constructs from "constructs";
|
|
/**
|
|
* Indicates that this resource can be referenced as a Preferences.
|
|
*
|
|
* @stability experimental
|
|
*/
|
|
export interface IPreferencesRef extends constructs.IConstruct, IEnvironmentAware {
|
|
/**
|
|
* A reference to a Preferences resource.
|
|
*/
|
|
readonly preferencesRef: PreferencesReference;
|
|
}
|
|
/**
|
|
* A reference to a Preferences resource.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
*/
|
|
export interface PreferencesReference {
|
|
/**
|
|
* The AccountId of the Preferences resource.
|
|
*/
|
|
readonly accountId: string;
|
|
}
|