aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
26 lines (25 loc) • 640 B
TypeScript
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a BillScenario.
*
* @stability experimental
*/
export interface IBillScenarioRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a BillScenario resource.
*/
readonly billScenarioRef: BillScenarioReference;
}
/**
* A reference to a BillScenario resource.
*
* @struct
* @stability external
*/
export interface BillScenarioReference {
/**
* The Arn of the BillScenario resource.
*/
readonly billScenarioArn: string;
}