UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

26 lines (25 loc) 642 B
import * as constructs from "constructs"; import { IEnvironmentAware } from "../environment-aware"; /** * Indicates that this resource can be referenced as a InvoiceUnit. * * @stability experimental */ export interface IInvoiceUnitRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a InvoiceUnit resource. */ readonly invoiceUnitRef: InvoiceUnitReference; } /** * A reference to a InvoiceUnit resource. * * @struct * @stability external */ export interface InvoiceUnitReference { /** * The InvoiceUnitArn of the InvoiceUnit resource. */ readonly invoiceUnitArn: string; }